- Timestamp:
- 10/28/2017 05:47:06 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/customize/class-wp-customize-new-menu-section.php
r41162 r42034 6 6 * @subpackage Customize 7 7 * @since 4.4.0 8 * @deprecated 4.9.0 This file is no longer used as of the menu creation UX introduced in #40104. 8 9 */ 9 10 … … 11 12 * Customize Menu Section Class 12 13 * 13 * Implements the new-menu-ui toggle button instead of a regular section.14 *15 14 * @since 4.3.0 15 * @deprecated 4.9.0 This class is no longer used as of the menu creation UX introduced in #40104. 16 16 * 17 17 * @see WP_Customize_Section … … 26 26 */ 27 27 public $type = 'new_menu'; 28 29 /** 30 * Constructor. 31 * 32 * Any supplied $args override class property defaults. 33 * 34 * @since 4.9.0 35 * 36 * @param WP_Customize_Manager $manager Customizer bootstrap instance. 37 * @param string $id An specific ID of the section. 38 * @param array $args Section arguments. 39 */ 40 public function __construct( WP_Customize_Manager $manager, $id, array $args = array() ) { 41 _deprecated_file( basename( __FILE__ ), '4.9.0' ); // @todo Move this outside of class in 5.0, and remove its require_once() from class-wp-customize-section.php. See #42364. 42 parent::__construct( $manager, $id, $args ); 43 } 28 44 29 45 /**
Note: See TracChangeset
for help on using the changeset viewer.