Skip to content
Snippets Groups Projects
Select Git revision
  • ba384f5b5adecacf4ea59a45455b1638e2da7a29
  • master default protected
  • renovate/golang.org-x-net-0.x
  • renovate/golang.org-x-crypto-0.x
  • renovate/git.autistici.org-ai3-go-common-digest
  • renovate/github.com-miekg-dns-1.x
  • renovate/github.com-prometheus-client_golang-1.x
  • v3
  • v2
9 results

config.go

Blame
  • class-wp-customize-widgets.php 64.78 KiB
    <?php
    /**
     * WordPress Customize Widgets classes
     *
     * @package WordPress
     * @subpackage Customize
     * @since 3.9.0
     */
    
    /**
     * Customize Widgets class.
     *
     * Implements widget management in the Customizer.
     *
     * @since 3.9.0
     *
     * @see WP_Customize_Manager
     */
    final class WP_Customize_Widgets {
    
    	/**
    	 * WP_Customize_Manager instance.
    	 *
    	 * @since 3.9.0
    	 * @var WP_Customize_Manager
    	 */
    	public $manager;
    
    	/**
    	 * All id_bases for widgets defined in core.
    	 *
    	 * @since 3.9.0
    	 * @var array
    	 */
    	protected $core_widget_id_bases = array(
    		'archives',
    		'calendar',
    		'categories',
    		'custom_html',
    		'links',
    		'media_audio',
    		'media_image',
    		'media_video',
    		'meta',
    		'nav_menu',
    		'pages',
    		'recent-comments',
    		'recent-posts',
    		'rss',
    		'search',
    		'tag_cloud',
    		'text',
    	);
    
    	/**
    	 * @since 3.9.0
    	 * @var array
    	 */
    	protected $rendered_sidebars = array();
    
    	/**
    	 * @since 3.9.0
    	 * @var array
    	 */
    	protected $rendered_widgets = array();
    
    	/**
    	 * @since 3.9.0
    	 * @var array
    	 */