create-block-theme/includes/class-create-block-theme.php
Aki Hamano d78536dac8
Some checks failed
Run checks / Lint (push) Has been cancelled
Run checks / Test Suite (push) Has been cancelled
PHPCS: enalbe VariableAnalysis.CodeAnalysis.VariableAnalysis rule (#782)
* PHPCS: enalbe VariableAnalysis.CodeAnalysis.VariableAnalysis rule

* Fix all php lint error

* Restore method call

* remove comment
2025-09-16 01:07:34 +09:00

72 lines
1.6 KiB
PHP

<?php
/**
* The core Create Block Theme plugin class.
*
* @since 0.0.2
* @package Create_Block_Theme
* @subpackage Create_Block_Theme/includes
* @author WordPress.org
*/
#[AllowDynamicProperties]
class CBT_Plugin {
/**
* Define the core functionality of the plugin.
*
* @since 0.0.2
*/
public function __construct() {
$this->load_dependencies();
$this->define_admin_hooks();
}
/**
* Load the required dependencies for this plugin.
*
* @since 0.0.2
* @access private
*/
private function load_dependencies() {
/**
* The class responsible for orchestrating the actions and filters of the
* core plugin.
*/
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-create-block-theme-loader.php';
/**
* The class responsible for defining all actions that occur in the admin area.
*/
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-create-block-theme-api.php';
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-create-block-theme-editor-tools.php';
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-create-block-theme-admin-landing.php';
$this->loader = new CBT_Plugin_Loader();
}
/**
* Register all of the hooks related to the admin area functionality
* of the plugin.
*
* @since 0.0.2
* @access private
*/
private function define_admin_hooks() {
new CBT_Theme_API();
new CBT_Editor_Tools();
new CBT_Admin_Landing();
}
/**
* Run the loader to execute all of the hooks with WordPress.
*
* @since 0.0.2
*/
public function run() {
$this->loader->run();
}
}