PluginProbe
Portfolio Block – show off your work with stunning layouts / trunk
Portfolio Block – show off your work with stunning layouts vtrunk
2.1.5 2.1.3 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1
portfolio-block / includes / rootPlugin / AdminMenu.php

AdminMenu.php in Portfolio Block – show off your work with stunning layouts trunk, at includes/rootPlugin/AdminMenu.php

40 lines 999 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace PFB;
3
4 class AdminMenu {
5 function __construct() {
6 add_action('admin_menu', [$this, 'adminMenu']);
7 }
8
9 public function adminMenu(){
10
11 add_submenu_page(
12 "edit.php?post_type=pfb",
13 __('Help & Demos - Portfolio', 'portfolio-block'),
14 __('Help & Demos', 'portfolio-block'),
15 'manage_options',
16 'pfb-dashboard',
17 [$this, 'renderHelpAndDemoPage'],
18
19 );
20 }
21
22
23
24 public function renderHelpAndDemoPage(){
25 ?>
26 <div id='pfbHelpAndDemos' data-info='<?php echo esc_attr(wp_json_encode([
27 'version' => PFB_PLUGIN_VERSION,
28 'isPremium' => pfbIsPremium(),
29 'hasPro' => PFB_HAS_PRO,
30 'licenseActiveNonce' => wp_create_nonce('bPlLicenseActivation'),
31 'adminUrl' => admin_url() ,
32 'nonce' => wp_create_nonce( 'pfb_admin_nonce' ),
33 'action' => 'pfb_get_blocks'
34
35 ])); ?>'>
36 </div>
37 <?php
38 }
39
40 }