Done !
| Server IP : 51.91.236.255 / Your IP : 216.73.217.126 Web Server : Apache System : Linux webm003.cluster129.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : chloega ( 433239) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/chloega/www/wp-content/themes/inspiro/inc/classes/ |
Upload File : |
<?php
/**
* Theme admin notices
*
* @package Inspiro
* @subpackage Inspiro_Lite
* @since Inspiro 1.9.4
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Main PHP class for wp-admin options page
*
* Menu items:
* - Dashboard
* - Customize
* - Import Demo
* - Upgrade
*/
if ( ! class_exists( 'Inspiro_WP_Admin_Menu' ) ) {
class Inspiro_WP_Admin_Menu {
// Hold the class instance.
private static $instance = null;
/**
* Private constructor to prevent multiple instances.
*/
private function __construct() {
add_action( 'admin_menu', array( $this, 'register_menus' ) );
}
/**
* Get the single instance of the class.
*/
public static function get_instance() {
if ( self::$instance == null ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Prevent object cloning.
*/
private function __clone() {}
/**
* Admin page callback.
*/
public function admin() {
require_once INSPIRO_THEME_DIR . 'inc/admin/pages/admin.php';
}
/**
* Upgrade page callback.
*/
public function upgrade() {
require_once INSPIRO_THEME_DIR . 'inc/admin/pages/upgrade.php';
}
/**
* Demo page callback.
*/
public function demo() {
require_once INSPIRO_THEME_DIR . 'inc/admin/pages/demo.php';
}
/**
* Plugins page callback.
*/
public function plugins() {
require_once INSPIRO_THEME_DIR . 'inc/admin/pages/plugins.php';
}
/**
* Register custom menu for wp-admin.
*
* @return void
*/
public function register_menus() {
$inspiro_icon = 'data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTUwIiBoZWlnaHQ9IjU1MCIgdmlld0JveD0iMCAwIDU1MCA1NTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjc1IDU1MEM0MjYuODc4IDU1MCA1NTAgNDI2Ljg3OCA1NTAgMjc1QzU1MCAxMjMuMTIyIDQyNi44NzggMCAyNzUgMEMxMjMuMTIyIDAgMCAxMjMuMTIyIDAgMjc1QzAgNDI2Ljg3OCAxMjMuMTIyIDU1MCAyNzUgNTUwWk0yMzIgMTIzLjMzM0MyMzIgOTkuNDAwOSAyNTEuNDAxIDgwIDI3NS4zMzMgODBIMzE0LjMzM0MzMTYuNzI3IDgwIDMxOC42NjcgODEuOTM5OSAzMTguNjY3IDg0LjMzMzVWMTYxLjQ0M0MzMTguNjY3IDE2Mi44NzIgMzE3LjkwNCAxNjQuMTkyIDMxNi42NjcgMTY0LjkwN0wyMzggMjEwLjMyNUMyMzUuMzMzIDIxMS44NjUgMjMyIDIwOS45NCAyMzIgMjA2Ljg2MVYxMjMuMzMzWk0yMzQgMjg3LjY5TDMxMi42NjcgMjQyLjI3MkMzMTUuMzMzIDI0MC43MzIgMzE4LjY2NyAyNDIuNjU3IDMxOC42NjcgMjQ1LjczNlY0MjYuNjY3QzMxOC42NjcgNDUwLjU5OSAyOTkuMjY2IDQ3MCAyNzUuMzMzIDQ3MEgyMzYuMzMzQzIzMy45NCA0NzAgMjMyIDQ2OC4wNiAyMzIgNDY1LjY2N1YyOTEuMTU0QzIzMiAyODkuNzI1IDIzMi43NjIgMjg4LjQwNCAyMzQgMjg3LjY5WiIgZmlsbD0iYmxhY2siLz4KPC9zdmc+';
// Add the main menu page
add_menu_page( // phpcs:ignore WPThemeReview.PluginTerritory.NoAddAdminPages.add_menu_pages_add_menu_page
__( 'Inspiro Lite Theme Dashboard', 'inspiro' ), // page title
__( 'Inspiro', 'inspiro' ), // menu title
'manage_options', // capability
'inspiro', // menu slug
array( $this, 'admin' ), // callback function
$inspiro_icon, // icon (default: none)
59 // position
);
// Add Dashboard submenu. Same slug as parent to allow renaming the automatic submenu that is added.
add_submenu_page( // phpcs:ignore WPThemeReview.PluginTerritory.NoAddAdminPages.add_menu_pages_add_submenu_page
'inspiro', // parent slug
__( 'Inspiro Lite Theme Dashboard', 'inspiro' ), // page title
__( 'Theme Dashboard', 'inspiro' ), // menu title
'manage_options', // capability
'inspiro', // menu slug
array( $this, 'admin' ) // callback function
);
// Add the "Import Demo" submenu page
add_submenu_page( // phpcs:ignore WPThemeReview.PluginTerritory.NoAddAdminPages.add_menu_pages_add_submenu_page
'inspiro', // parent slug
__( 'Import Demo', 'inspiro' ), // page title
__( 'Import Demo', 'inspiro' ), // menu title
'manage_options', // capability
'inspiro-demo', // menu slug,
array( $this, 'demo' ) // callback function
);
// Add the "Customize" submenu page
add_submenu_page( // phpcs:ignore WPThemeReview.PluginTerritory.NoAddAdminPages.add_menu_pages_add_submenu_page
'inspiro', // parent slug
__( 'Customize', 'inspiro' ), // page title
__( 'Customize', 'inspiro' ), // menu title
'manage_options', // capability
'customize.php' // menu slug, link was included without a callback render func.
);
// Add the "Upgrade" submenu page
add_submenu_page( // phpcs:ignore WPThemeReview.PluginTerritory.NoAddAdminPages.add_menu_pages_add_submenu_page
'inspiro', // parent slug
__( 'Install Premium', 'inspiro' ), // page title
__( 'Install Premium', 'inspiro' ), // menu title
'manage_options', // capability
'inspiro-upgrade', // menu slug,
array( $this, 'upgrade' ) // callback function
);
add_submenu_page( // phpcs:ignore WPThemeReview.PluginTerritory.NoAddAdminPages.add_menu_pages_add_submenu_page
'inspiro', // parent slug
__( 'Install Plugins', 'inspiro' ), // page title
__( 'Install Plugins', 'inspiro' ), // menu title
'manage_options', // capability
'inspiro-plugins', // menu slug,
array( $this, 'plugins' ) // callback function
);
// The "Install Plugins" submenu page was added true class-tgm-plugin-activation.php add_admin_menu( array $args )
}
}
// Instantiate the class as a Singleton.
Inspiro_WP_Admin_Menu::get_instance();
}