Changeset 47383
- Timestamp:
- 02/26/2020 03:31:19 PM (6 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 10 edited
-
class-wp-customize-nav-menus.php (modified) (1 diff)
-
class-wp-customize-panel.php (modified) (1 diff)
-
class-wp-customize-section.php (modified) (1 diff)
-
class-wp-customize-setting.php (modified) (1 diff)
-
class-wp-customize-widgets.php (modified) (1 diff)
-
customize/class-wp-customize-custom-css-setting.php (modified) (1 diff)
-
customize/class-wp-customize-nav-menu-item-setting.php (modified) (1 diff)
-
customize/class-wp-customize-nav-menu-setting.php (modified) (1 diff)
-
customize/class-wp-customize-new-menu-section.php (modified) (1 diff)
-
customize/class-wp-customize-selective-refresh.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-nav-menus.php
r46823 r47383 40 40 * @since 4.3.0 41 41 * 42 * @param WP_Customize_Manager $manager An instance of the WP_Customize_Manager class.42 * @param WP_Customize_Manager $manager Customizer bootstrap instance. 43 43 */ 44 44 public function __construct( $manager ) { -
trunk/src/wp-includes/class-wp-customize-panel.php
r47198 r47383 139 139 * 140 140 * @param WP_Customize_Manager $manager Customizer bootstrap instance. 141 * @param string $id A nspecific ID for the panel.141 * @param string $id A specific ID for the panel. 142 142 * @param array $args Panel arguments. 143 143 */ -
trunk/src/wp-includes/class-wp-customize-section.php
r47198 r47383 150 150 * 151 151 * @param WP_Customize_Manager $manager Customizer bootstrap instance. 152 * @param string $id A nspecific ID of the section.152 * @param string $id A specific ID of the section. 153 153 * @param array $args Section arguments. 154 154 */ -
trunk/src/wp-includes/class-wp-customize-setting.php
r47198 r47383 154 154 * @since 3.4.0 155 155 * 156 * @param WP_Customize_Manager $manager 157 * @param string $id A n specific ID of the setting. Can be a158 * theme mod or option name.156 * @param WP_Customize_Manager $manager Customizer bootstrap instance. 157 * @param string $id A specific ID of the setting. 158 * Can be a theme mod or option name. 159 159 * @param array $args Setting arguments. 160 160 */ -
trunk/src/wp-includes/class-wp-customize-widgets.php
r47219 r47383 95 95 * @since 3.9.0 96 96 * 97 * @param WP_Customize_Manager $manager Customize manager bootstrap instance.97 * @param WP_Customize_Manager $manager Customizer bootstrap instance. 98 98 */ 99 99 public function __construct( $manager ) { -
trunk/src/wp-includes/customize/class-wp-customize-custom-css-setting.php
r46586 r47383 58 58 * @throws Exception If the setting ID does not match the pattern `custom_css[$stylesheet]`. 59 59 * 60 * @param WP_Customize_Manager $manager The Customize Manager class.61 * @param string $id A n specific ID of the setting. Can be a62 * theme mod or option name.60 * @param WP_Customize_Manager $manager Customizer bootstrap instance. 61 * @param string $id A specific ID of the setting. 62 * Can be a theme mod or option name. 63 63 * @param array $args Setting arguments. 64 64 */ -
trunk/src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php
r47219 r47383 156 156 * @since 4.3.0 157 157 * 158 * @param WP_Customize_Manager $manager Bootstrap Customizerinstance.159 * @param string $id A n specific ID of the setting. Can be a160 * theme mod or option name.158 * @param WP_Customize_Manager $manager Customizer bootstrap instance. 159 * @param string $id A specific ID of the setting. 160 * Can be a theme mod or option name. 161 161 * @param array $args Optional. Setting arguments. 162 162 * -
trunk/src/wp-includes/customize/class-wp-customize-nav-menu-setting.php
r47219 r47383 126 126 * @since 4.3.0 127 127 * 128 * @param WP_Customize_Manager $manager Bootstrap Customizerinstance.129 * @param string $id A n specific ID of the setting. Can be a130 * theme mod or option name.128 * @param WP_Customize_Manager $manager Customizer bootstrap instance. 129 * @param string $id A specific ID of the setting. 130 * Can be a theme mod or option name. 131 131 * @param array $args Optional. Setting arguments. 132 132 * -
trunk/src/wp-includes/customize/class-wp-customize-new-menu-section.php
r46637 r47383 38 38 * 39 39 * @param WP_Customize_Manager $manager Customizer bootstrap instance. 40 * @param string $id A nspecific ID of the section.40 * @param string $id A specific ID of the section. 41 41 * @param array $args Section arguments. 42 42 */ -
trunk/src/wp-includes/customize/class-wp-customize-selective-refresh.php
r47198 r47383 59 59 * @since 4.5.0 60 60 * 61 * @param WP_Customize_Manager $manager Managerinstance.61 * @param WP_Customize_Manager $manager Customizer bootstrap instance. 62 62 */ 63 63 public function __construct( WP_Customize_Manager $manager ) {
Note: See TracChangeset
for help on using the changeset viewer.