mirror of
https://ghproxy.net/https://github.com/AlxMedia/featureon.git
synced 2025-08-26 05:49:06 +08:00
148 lines
3.5 KiB
PHP
148 lines
3.5 KiB
PHP
<?php
|
|
/**
|
|
* Handles modules loading.
|
|
*
|
|
* @package Kirki
|
|
* @category Core
|
|
* @author Ari Stathopoulos (@aristath)
|
|
* @copyright Copyright (c) 2020, David Vongries
|
|
* @license https://opensource.org/licenses/MIT
|
|
* @since 3.0.0
|
|
*/
|
|
|
|
/**
|
|
* The Kirki_Modules class.
|
|
*/
|
|
class Kirki_Modules {
|
|
|
|
/**
|
|
* An array of available modules.
|
|
*
|
|
* @static
|
|
* @access private
|
|
* @since 3.0.0
|
|
* @var array
|
|
*/
|
|
private static $modules = array();
|
|
|
|
/**
|
|
* An array of active modules (objects).
|
|
*
|
|
* @static
|
|
* @access private
|
|
* @since 3.0.0
|
|
* @var array
|
|
*/
|
|
private static $active_modules = array();
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @access public
|
|
* @since 3.0.0
|
|
*/
|
|
public function __construct() {
|
|
add_action( 'after_setup_theme', array( $this, 'setup_default_modules' ), 10 );
|
|
add_action( 'after_setup_theme', array( $this, 'init' ), 11 );
|
|
}
|
|
|
|
/**
|
|
* Set the default modules and apply the 'kirki_modules' filter.
|
|
* In v3.0.35 this method was renamed from default_modules to setup_default_modules,
|
|
* and its visibility changed from private to public to fix https://github.com/aristath/kirki/issues/2023
|
|
*
|
|
* @access public
|
|
* @since 3.0.0
|
|
*/
|
|
public function setup_default_modules() {
|
|
self::$modules = apply_filters(
|
|
'kirki_modules',
|
|
array(
|
|
'css' => 'Kirki_Modules_CSS',
|
|
'css-vars' => 'Kirki_Modules_CSS_Vars',
|
|
'icons' => 'Kirki_Modules_Icons',
|
|
'loading' => 'Kirki_Modules_Loading',
|
|
'tooltips' => 'Kirki_Modules_Tooltips',
|
|
'postMessage' => 'Kirki_Modules_PostMessage',
|
|
'selective-refresh' => 'Kirki_Modules_Selective_Refresh',
|
|
'field-dependencies' => 'Kirki_Modules_Field_Dependencies',
|
|
'custom-sections' => 'Kirki_Modules_Custom_Sections',
|
|
'webfonts' => 'Kirki_Modules_Webfonts',
|
|
'webfont-loader' => 'Kirki_Modules_Webfont_Loader',
|
|
'preset' => 'Kirki_Modules_Preset',
|
|
'gutenberg' => 'Kirki_Modules_Gutenberg',
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Instantiates the modules.
|
|
* In v3.0.35 the visibility for this method was changed
|
|
* from private to public to fix https://github.com/aristath/kirki/issues/2023
|
|
*
|
|
* @access public
|
|
* @since 3.0.0
|
|
*/
|
|
public function init() {
|
|
foreach ( self::$modules as $key => $module_class ) {
|
|
if ( class_exists( $module_class ) ) {
|
|
// Use this syntax instead of $module_class::get_instance()
|
|
// for PHP 5.2 compatibility.
|
|
self::$active_modules[ $key ] = call_user_func( array( $module_class, 'get_instance' ) );
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Add a module.
|
|
*
|
|
* @static
|
|
* @access public
|
|
* @param string $module The classname of the module to add.
|
|
* @since 3.0.0
|
|
*/
|
|
public static function add_module( $module ) {
|
|
if ( ! in_array( $module, self::$modules, true ) ) {
|
|
self::$modules[] = $module;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Remove a module.
|
|
*
|
|
* @static
|
|
* @access public
|
|
* @param string $module The classname of the module to add.
|
|
* @since 3.0.0
|
|
*/
|
|
public static function remove_module( $module ) {
|
|
$key = array_search( $module, self::$modules, true );
|
|
if ( false !== $key ) {
|
|
unset( self::$modules[ $key ] );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get the modules array.
|
|
*
|
|
* @static
|
|
* @access public
|
|
* @since 3.0.0
|
|
* @return array
|
|
*/
|
|
public static function get_modules() {
|
|
return self::$modules;
|
|
}
|
|
|
|
/**
|
|
* Get the array of active modules (objects).
|
|
*
|
|
* @static
|
|
* @access public
|
|
* @since 3.0.0
|
|
* @return array
|
|
*/
|
|
public static function get_active_modules() {
|
|
return self::$active_modules;
|
|
}
|
|
}
|