summaryrefslogtreecommitdiff
path: root/Postman/Extensions/Admin/PostmanAdmin.php
blob: 3b61a0a6b8e9b120de35282e3b9fecd7211f04c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
if ( ! defined( 'ABSPATH' ) ) exit;

class PostmanAdmin {

    public function __construct()
    {
        $PostmanLicenseManager = PostmanLicenseManager::get_instance();
        $extensions = $PostmanLicenseManager->get_extensions();

        if ( count( $extensions ) > 0 ) {
            add_action('admin_menu', [ $this, 'add_menu' ], 20 );
        }

    }

    public function add_menu() {
        add_submenu_page(
            PostmanViewController::POSTMAN_MENU_SLUG,
            __('Extensions', 'post-smtp'),
            __('Extensions', 'post-smtp'),
            'manage_options',
            'post-smtp-extensions',
            [ $this, 'render_menu' ]
        );
    }

    public function render_menu() {
        include_once 'PostmanAdminView.php';
    }
}