![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/plugins/ultimate-blocks/includes/ |
<?php use Ultimate_Blocks\includes\Ultimate_Blocks_Version_Control; /** * The file that defines the core plugin class * * A class definition that includes attributes and functions used across both the * public-facing side of the site and the admin area. * * @link http://imtiazrayhan.com/ * @since 1.0.2 * * @package ultimate_blocks * @subpackage ultimate_blocks/includes */ /** * The core plugin class. * * This is used to define internationalization, admin-specific hooks, and * public-facing site hooks. * * Also maintains the unique identifier of this plugin as well as the current * version of the plugin. * * @since 1.0.2 * @package ultimate_blocks * @subpackage ultimate_blocks/includes * @author Imtiaz Rayhan <[email protected]> */ class Ultimate_Blocks { /** * The loader that's responsible for maintaining and registering all hooks that power * the plugin. * * @since 1.0.2 * @access protected * @var Ultimate_Blocks_Loader $loader Maintains and registers all hooks for the plugin. */ protected $loader; /** * Define the core functionality of the plugin. * * Set the plugin name and the plugin version that can be used throughout the plugin. * Load the dependencies, define the locale, and set the hooks for the admin area and * the public-facing side of the site. * * @since 1.0.2 */ public function __construct() { $this->load_dependencies(); $this->set_locale(); $this->define_admin_hooks(); $this->define_public_hooks(); } /** * Load the required dependencies for this plugin. * * Include the following files that make up the plugin: * * - Ultimate_Blocks_Loader. Orchestrates the hooks of the plugin. * - Ultimate_Blocks_i18n. Defines internationalization functionality. * - Ultimate_Blocks_Admin. Defines all hooks for the admin area. * - Ultimate_Blocks_Public. Defines all hooks for the public side of the site. * * Create an instance of the loader which will be used to register the hooks * with WordPress. * * @since 1.0.2 * @access private */ private function load_dependencies() { /** * The class responsible for orchestrating the actions and filters of the * core plugin. */ require_once ULTIMATE_BLOCKS_PATH . 'includes/class-ultimate-blocks-loader.php'; /** * The class responsible for defining internationalization functionality * of the plugin. */ require_once ULTIMATE_BLOCKS_PATH . 'includes/class-ultimate-blocks-i18n.php'; require_once ULTIMATE_BLOCKS_PATH . 'includes/class-ultimate-blocks-category.php'; /** * The class responsible for defining all actions that occur in the admin area. */ require_once ULTIMATE_BLOCKS_PATH . 'admin/class-ultimate-blocks-admin.php'; /** * The class responsible for defining all actions that occur in the admin help area. */ require_once ULTIMATE_BLOCKS_PATH . 'admin/class-ultimate-blocks-help.php'; /** * The class responsible for defining all actions that occur in the public-facing * side of the site. */ require_once ULTIMATE_BLOCKS_PATH . 'public/class-ultimate-blocks-public.php'; $this->loader = new Ultimate_Blocks_Loader(); } /** * Define the locale for this plugin for internationalization. * * Uses the Ultimate_Blocks_i18n class in order to set the domain and to register the hook * with WordPress. * * @since 1.0.2 * @access private */ private function set_locale() { $plugin_i18n = new Ultimate_Blocks_i18n(); $this->loader->add_action( 'plugins_loaded', $plugin_i18n, 'load_plugin_textdomain' ); } /** * Register all of the hooks related to the admin area functionality * of the plugin. * * @since 1.0.2 * @access private */ private function define_admin_hooks() { $plugin_admin = new Ultimate_Blocks_Admin(); $plugin_help = new Ultimate_Blocks_Help(); $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_styles' ); $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_scripts' ); $this->loader->add_action( 'admin_init', $plugin_admin, 'on_admin_init' ); // Styles and Scripts for Help Page. $this->loader->add_action( 'admin_enqueue_scripts', $plugin_help, 'enqueue_styles' ); $this->loader->add_action( 'admin_enqueue_scripts', $plugin_help, 'enqueue_scripts' ); $this->loader->add_action( 'admin_menu', $plugin_admin, 'register_admin_menus' ); $this->loader->add_action( 'admin_menu', $plugin_help, 'register_help_admin_menu' ); // Ajax hooks. $this->loader->add_action( 'wp_ajax_toggle_block_status', $plugin_admin, 'toggle_block_status' ); // Insert blocks setting. $this->loader->add_action( 'admin_head', $plugin_admin, 'insert_blocks_settings' ); //Review Notice $this->loader->add_action( 'admin_notices', $plugin_admin, 'UltimateBlocks_review_notice' ); $this->loader->add_action( 'wp_ajax_UltimateBlocksReviewNoticeHide', $plugin_admin, 'UltimateBlocks_hide_review_notify' ); // initialize version control manager Ultimate_Blocks_Version_Control::init(); } /** * Register all the hooks related to the public-facing functionality * of the plugin. * * @since 1.0.2 * @access private */ private function define_public_hooks() { $plugin_public = new Ultimate_Blocks_Public(); $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' ); $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' ); } /** * Run the loader to execute all of the hooks with WordPress. * * @since 1.0.2 */ public function run() { $this->loader->run(); } /** * The reference to the class that orchestrates the hooks with the plugin. * * @return Ultimate_Blocks_Loader Orchestrates the hooks of the plugin. * @since 1.0.2 */ public function get_loader() { return $this->loader; } }