PluginProbe
Countdown Timer Block – build urgency for events and launches / 1.3.0
Countdown Timer Block – build urgency for events and launches v1.3.0
1.3.3 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 All 32 releases
countdown-time / includes / admin / SubMenu.php

SubMenu.php in Countdown Timer Block – build urgency for events and launches 1.3.0, at includes/admin/SubMenu.php

33 lines 677 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace CTB\Admin;
3
4 if ( !defined( 'ABSPATH' ) ) { exit; }
5
6 class SubMenu {
7 public function __construct() {
8 add_action( 'admin_menu', [ $this, 'adminMenu' ] );
9 }
10
11 function adminMenu(){
12 add_submenu_page(
13 'tools.php',
14 __('Countdown Timer - bPlugins', 'countdown-time'),
15 __('Countdown Timer', 'countdown-time'),
16 'manage_options',
17 'countdown-time',
18 [$this, 'renderDashboardPage']
19 );
20 }
21
22 function renderDashboardPage(){ ?>
23 <div
24 id='ctbDashboard'
25 data-info='<?php echo esc_attr( wp_json_encode( [
26 'version' => CTB_VERSION,
27 'isPremium' => ctbIsPremium(),
28 'hasPro' => CTB_HAS_PRO
29 ] ) ); ?>'
30 ></div>
31 <?php }
32 }
33 new SubMenu();