mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
5a77c96ea6
It's important for every file in WordPress, regardless of makeup or architecture, to have its own file header, even if the file contains nothing but a class. When parsed, files and classes are mutually exclusive and should be documented with this in mind. See [33746]. See #33413. Built from https://develop.svn.wordpress.org/trunk@33756 git-svn-id: http://core.svn.wordpress.org/trunk@33724 1a063a9b-81f0-0310-95a4-ce76da25c4cd
83 lines
1.8 KiB
PHP
83 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* Class file for WP_Widget_Factory
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Widgets
|
|
* @since 4.4.0
|
|
*/
|
|
|
|
/**
|
|
* Singleton that registers and instantiates WP_Widget classes.
|
|
*
|
|
* @since 2.8.0
|
|
* @since 4.4.0 Moved to its own file from wp-includes/widgets.php
|
|
*/
|
|
class WP_Widget_Factory {
|
|
public $widgets = array();
|
|
|
|
/**
|
|
* PHP5 constructor.
|
|
*/
|
|
public function __construct() {
|
|
add_action( 'widgets_init', array( $this, '_register_widgets' ), 100 );
|
|
}
|
|
|
|
/**
|
|
* PHP4 constructor.
|
|
*/
|
|
public function WP_Widget_Factory() {
|
|
_deprecated_constructor( 'WP_Widget_Factory', '4.2.0' );
|
|
self::__construct();
|
|
}
|
|
|
|
/**
|
|
* Register a widget subclass.
|
|
*
|
|
* @since 2.8.0
|
|
* @access public
|
|
*
|
|
* @param string $widget_class The name of a {@see WP_Widget} subclass.
|
|
*/
|
|
public function register( $widget_class ) {
|
|
$this->widgets[$widget_class] = new $widget_class();
|
|
}
|
|
|
|
/**
|
|
* Un-register a widget subclass.
|
|
*
|
|
* @since 2.8.0
|
|
* @access public
|
|
*
|
|
* @param string $widget_class The name of a {@see WP_Widget} subclass.
|
|
*/
|
|
public function unregister( $widget_class ) {
|
|
unset( $this->widgets[ $widget_class ] );
|
|
}
|
|
|
|
/**
|
|
* Utility method for adding widgets to the registered widgets global.
|
|
*
|
|
* @since 2.8.0
|
|
* @access public
|
|
*
|
|
* @global array $wp_registered_widgets
|
|
*/
|
|
public function _register_widgets() {
|
|
global $wp_registered_widgets;
|
|
$keys = array_keys($this->widgets);
|
|
$registered = array_keys($wp_registered_widgets);
|
|
$registered = array_map('_get_widget_id_base', $registered);
|
|
|
|
foreach ( $keys as $key ) {
|
|
// don't register new widget if old widget with the same id is already registered
|
|
if ( in_array($this->widgets[$key]->id_base, $registered, true) ) {
|
|
unset($this->widgets[$key]);
|
|
continue;
|
|
}
|
|
|
|
$this->widgets[$key]->_register();
|
|
}
|
|
}
|
|
}
|