- Timestamp:
- 10/28/2017 05:47:06 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/customize/class-wp-customize-new-menu-control.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 … … 12 13 * 13 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. 14 16 * 15 17 * @see WP_Customize_Control … … 26 28 27 29 /** 30 * Constructor. 31 * 32 * @since 4.9.0 33 * 34 * @param WP_Customize_Manager $manager Manager. 35 * @param string $id ID. 36 * @param array $args Args. 37 */ 38 public function __construct( WP_Customize_Manager $manager, $id, array $args = array() ) { 39 _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-control.php. See #42364. 40 parent::__construct( $manager, $id, $args ); 41 } 42 43 /** 28 44 * Render the control's content. 29 45 *
Note: See TracChangeset
for help on using the changeset viewer.