# top-10/trunk/includes/admin/class-admin.php

WebberZone Top 10 — Popular Posts, version trunk. 365 lines.

- Page: https://pluginprobe.com/plugins/top-10/trunk/code/includes/admin/class-admin.php
- Raw: https://pluginprobe.com/plugins/top-10/trunk/raw/includes/admin/class-admin.php
- Modified: 2026-08-10T16:44:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/top-10/trunk/code/includes/admin/class-admin.php#L10-L20`.

```php
<?php
/**
 * Admin class.
 *
 * @package WebberZone\Top_Ten\Admin
 */

namespace WebberZone\Top_Ten\Admin;

use WebberZone\Top_Ten\Util\Cache;
use WebberZone\Top_Ten\Admin\Settings_Wizard;
use WebberZone\Top_Ten\Admin\Admin_Notices_API;
use WebberZone\Top_Ten\Util\Hook_Registry;

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

/**
 * Bootstraps the Top 10 admin area and its sub-classes.
 *
 * @since   3.3.0
 */
class Admin {

	/**
	 * Admin Dashboard.
	 *
	 * @since 3.3.0
	 *
	 * @var object Admin Dashboard.
	 */
	public $admin_dashboard;

	/**
	 * Settings API.
	 *
	 * @since 3.3.0
	 *
	 * @var object Settings API.
	 */
	public $settings;

	/**
	 * Settings Wizard.
	 *
	 * @since 4.2.0
	 *
	 * @var Settings_Wizard Settings Wizard instance.
	 */
	public $settings_wizard;

	/**
	 * Statistics table.
	 *
	 * @since 3.3.0
	 *
	 * @var object Statistics table.
	 */
	public $statistics;

	/**
	 * Activator class.
	 *
	 * @since 3.3.0
	 *
	 * @var object Activator class.
	 */
	public $activator;

	/**
	 * Admin Columns.
	 *
	 * @since 3.3.0
	 *
	 * @var object Admin Columns.
	 */
	public $admin_columns;

	/**
	 * Metabox functions.
	 *
	 * @since 3.3.0
	 *
	 * @var object Metabox functions.
	 */
	public $metabox;

	/**
	 * Import Export functions.
	 *
	 * @since 3.3.0
	 *
	 * @var object Import Export functions.
	 */
	public $import_export;

	/**
	 * Tools page.
	 *
	 * @since 3.3.0
	 *
	 * @var object Tools page.
	 */
	public $tools_page;

	/**
	 * Dashboard widgets.
	 *
	 * @since 3.3.0
	 *
	 * @var object Dashboard widgets.
	 */
	public $dashboard_widgets;

	/**
	 * Cache.
	 *
	 * @since 3.3.0
	 *
	 * @var object Cache.
	 */
	public $cache;

	/**
	 * Admin notices.
	 *
	 * @since 4.1.0
	 *
	 * @var object Admin notices.
	 */
	public $admin_notices;

	/**
	 * Admin notices API.
	 *
	 * @since 4.2.0
	 *
	 * @var Admin_Notices_API
	 */
	public $admin_notices_api;

	/**
	 * Admin banner helper instance.
	 *
	 * @since 4.2.0
	 *
	 * @var Admin_Banner
	 */
	public Admin_Banner $admin_banner;

	/**
	 * Prefix which is used for creating the unique filters and actions.
	 *
	 * @since 3.3.0
	 *
	 * @var string Prefix.
	 */
	public static $prefix;

	/**
	 * Settings Key.
	 *
	 * @since 3.3.0
	 *
	 * @var string Settings Key.
	 */
	public $settings_key;

	/**
	 * The slug name to refer to this menu by (should be unique for this menu).
	 *
	 * @since 3.3.0
	 *
	 * @var string Menu slug.
	 */
	public $menu_slug;

	/**
	 * Main constructor class.
	 *
	 * @since 3.3.0
	 */
	public function __construct() {
		$this->hooks();

		// Initialise admin classes.
		$this->admin_dashboard   = new Dashboard();
		$this->settings          = new Settings();
		$this->settings_wizard   = new Settings_Wizard();
		$this->statistics        = new Statistics();
		$this->activator         = new Activator();
		$this->admin_columns     = new Columns();
		$this->metabox           = new Metabox();
		$this->import_export     = new Import_Export();
		$this->tools_page        = new Tools_Page();
		$this->dashboard_widgets = new Dashboard_Widgets();
		$this->cache             = new Cache();
		$this->admin_notices_api = new Admin_Notices_API();
		$this->admin_notices     = new Admin_Notices();
		$this->admin_banner      = new Admin_Banner( $this->get_admin_banner_config() );
	}

	/**
	 * Run the hooks.
	 *
	 * @since 3.3.0
	 */
	public function hooks() {
		Hook_Registry::add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
	}

	/**
	 * Enqueue scripts in admin area.
	 *
	 * @since 3.0.0
	 */
	public function admin_enqueue_scripts() {

		$minimize = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';

		wp_register_script(
			'top-ten-chart-js',
			TOP_TEN_PLUGIN_URL . 'includes/admin/js/chart.min.js',
			array(),
			'4.4.8',
			true
		);
		wp_register_script(
			'top-ten-chart-datalabels-js',
			TOP_TEN_PLUGIN_URL . 'includes/admin/js/chartjs-plugin-datalabels.min.js',
			array( 'top-ten-chart-js' ),
			'2.2.0',
			true
		);
		wp_register_script(
			'top-ten-luxon',
			TOP_TEN_PLUGIN_URL . 'includes/admin/js/luxon.min.js',
			array(),
			'3.5.0',
			true
		);
		wp_register_script(
			'top-ten-chartjs-adapter-luxon-js',
			TOP_TEN_PLUGIN_URL . 'includes/admin/js/chartjs-adapter-luxon.min.js',
			array( 'top-ten-luxon', 'top-ten-chart-js' ),
			'1.3.1',
			true
		);
		wp_register_script(
			'top-ten-chart-data-js',
			TOP_TEN_PLUGIN_URL . "includes/admin/js/chart-data{$minimize}.js",
			array( 'jquery', 'top-ten-chart-js', 'top-ten-chart-datalabels-js', 'top-ten-luxon', 'top-ten-chartjs-adapter-luxon-js' ),
			TOP_TEN_VERSION,
			true
		);
		wp_register_script(
			'top-ten-admin-js',
			TOP_TEN_PLUGIN_URL . "includes/admin/js/admin-scripts{$minimize}.js",
			array( 'jquery', 'jquery-ui-tabs', 'jquery-ui-datepicker' ),
			TOP_TEN_VERSION,
			true
		);
		wp_localize_script(
			'top-ten-admin-js',
			'top_ten_admin',
			array(
				'nonce' => wp_create_nonce( 'top_ten_admin_nonce' ),
			)
		);
		wp_register_style(
			'top-ten-admin-css',
			TOP_TEN_PLUGIN_URL . "includes/admin/css/admin-styles{$minimize}.css",
			array(),
			TOP_TEN_VERSION
		);
		wp_register_script(
			'top-ten-wpp-importer-js',
			TOP_TEN_PLUGIN_URL . "includes/admin/js/wpp-importer{$minimize}.js",
			array( 'jquery' ),
			TOP_TEN_VERSION,
			true
		);
	}

	/**
	 * Display admin sidebar.
	 *
	 * @since 3.3.0
	 */
	public static function display_admin_sidebar() {
		require_once TOP_TEN_PLUGIN_DIR . 'includes/admin/sidebar.php';
	}

	/**
	 * Retrieve the configuration array for the admin banner.
	 *
	 * @since 4.2.0
	 *
	 * @return array<string, mixed>
	 */
	private function get_admin_banner_config(): array {
		return array(
			'capability' => 'manage_options',
			'prefix'     => 'tptn',
			'style'      => array(
				'version' => TOP_TEN_VERSION,
			),
			'screen_ids' => array(
				'toplevel_page_tptn_dashboard',
				'top-10_page_tptn_options_page',
				'top-10_page_tptn_tools_page',
				'top-10_page_tptn_popular_posts',
			),
			'page_slugs' => array(
				'tptn_dashboard',
				'tptn_options_page',
				'tptn_tools_page',
				'tptn_popular_posts',
			),
			'strings'    => array(
				'region_label' => esc_html__( 'Top 10 quick links', 'top-10' ),
				'nav_label'    => esc_html__( 'Top 10 admin shortcuts', 'top-10' ),
				'eyebrow'      => esc_html__( 'WebberZone Top 10', 'top-10' ),
				'title'        => esc_html__( 'Track and display popular posts on your site.', 'top-10' ),
				'text'         => esc_html__( 'Jump to your most-used Top 10 tools, manage content faster, and explore more WebberZone plugins.', 'top-10' ),
			),
			'sections'   => array(
				'dashboard' => array(
					'label'      => esc_html__( 'Dashboard', 'top-10' ),
					'url'        => admin_url( 'admin.php?page=tptn_dashboard' ),
					'screen_ids' => array( 'toplevel_page_tptn_dashboard' ),
					'page_slugs' => array( 'tptn_dashboard' ),
				),
				'popular'   => array(
					'label'      => esc_html__( 'Popular Posts', 'top-10' ),
					'url'        => admin_url( 'admin.php?page=tptn_popular_posts' ),
					'screen_ids' => array( 'top-10_page_tptn_popular_posts' ),
					'page_slugs' => array( 'tptn_popular_posts' ),
				),
				'settings'  => array(
					'label'      => esc_html__( 'Settings', 'top-10' ),
					'url'        => admin_url( 'admin.php?page=tptn_options_page' ),
					'screen_ids' => array( 'top-10_page_tptn_options_page' ),
					'page_slugs' => array( 'tptn_options_page' ),
				),
				'tools'     => array(
					'label'      => esc_html__( 'Tools', 'top-10' ),
					'url'        => admin_url( 'admin.php?page=tptn_tools_page' ),
					'screen_ids' => array( 'top-10_page_tptn_tools_page' ),
					'page_slugs' => array( 'tptn_tools_page' ),
				),
				'plugins'   => array(
					'label'  => esc_html__( 'WebberZone Plugins', 'top-10' ),
					'url'    => 'https://webberzone.com/plugins/',
					'type'   => 'secondary',
					'target' => '_blank',
					'rel'    => 'noopener noreferrer',
				),
			),
		);
	}
}

```
