Customizer: Allow sections and panels to be exported to JS.
Also fix param docs for `customize_dynamic_setting_class` filter, and use `require_once` for `class-wp-customize-manager.php` in bootstrap function `_wp_customize_include()`. See #30737, #32576. Built from https://develop.svn.wordpress.org/trunk@32744 git-svn-id: http://core.svn.wordpress.org/trunk@32715 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
40ad21b58b
commit
489db97ea3
|
@ -909,7 +909,7 @@ final class WP_Customize_Manager {
|
||||||
*
|
*
|
||||||
* @param string $setting_class WP_Customize_Setting or a subclass.
|
* @param string $setting_class WP_Customize_Setting or a subclass.
|
||||||
* @param string $setting_id ID for dynamic setting, usually coming from `$_POST['customized']`.
|
* @param string $setting_id ID for dynamic setting, usually coming from `$_POST['customized']`.
|
||||||
* @param string $setting_args WP_Customize_Setting or a subclass.
|
* @param array $setting_args WP_Customize_Setting or a subclass.
|
||||||
*/
|
*/
|
||||||
$setting_class = apply_filters( 'customize_dynamic_setting_class', $setting_class, $setting_id, $setting_args );
|
$setting_class = apply_filters( 'customize_dynamic_setting_class', $setting_class, $setting_id, $setting_args );
|
||||||
|
|
||||||
|
@ -1205,7 +1205,7 @@ final class WP_Customize_Manager {
|
||||||
$sections = array();
|
$sections = array();
|
||||||
|
|
||||||
foreach ( $this->sections as $section ) {
|
foreach ( $this->sections as $section ) {
|
||||||
if ( ! $section->check_capabilities() || ! $section->controls ) {
|
if ( ! $section->check_capabilities() ) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1228,7 +1228,7 @@ final class WP_Customize_Manager {
|
||||||
$panels = array();
|
$panels = array();
|
||||||
|
|
||||||
foreach ( $this->panels as $panel ) {
|
foreach ( $this->panels as $panel ) {
|
||||||
if ( ! $panel->check_capabilities() || ! $panel->sections ) {
|
if ( ! $panel->check_capabilities() ) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1992,9 +1992,8 @@ function _wp_customize_include() {
|
||||||
) )
|
) )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
require( ABSPATH . WPINC . '/class-wp-customize-manager.php' );
|
require_once ABSPATH . WPINC . '/class-wp-customize-manager.php';
|
||||||
// Init Customize class
|
$GLOBALS['wp_customize'] = new WP_Customize_Manager();
|
||||||
$GLOBALS['wp_customize'] = new WP_Customize_Manager;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.3-alpha-32743';
|
$wp_version = '4.3-alpha-32744';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue