wp/wp-includes/customize/class-wp-customize-new-menu-section.php
changeset 9 177826044cd9
parent 7 cf61fcea0001
child 16 a86126ab1dd4
equal deleted inserted replaced
8:c7c34916027a 9:177826044cd9
    36 	 * @param WP_Customize_Manager $manager Customizer bootstrap instance.
    36 	 * @param WP_Customize_Manager $manager Customizer bootstrap instance.
    37 	 * @param string               $id      An specific ID of the section.
    37 	 * @param string               $id      An specific ID of the section.
    38 	 * @param array                $args    Section arguments.
    38 	 * @param array                $args    Section arguments.
    39 	 */
    39 	 */
    40 	public function __construct( WP_Customize_Manager $manager, $id, array $args = array() ) {
    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.
    41 		_deprecated_file( basename( __FILE__ ), '4.9.0' ); // @todo Move this outside of class, and remove its require_once() from class-wp-customize-section.php. See #42364.
    42 		parent::__construct( $manager, $id, $args );
    42 		parent::__construct( $manager, $id, $args );
    43 	}
    43 	}
    44 
    44 
    45 	/**
    45 	/**
    46 	 * Render the section, and the controls that have been added to it.
    46 	 * Render the section, and the controls that have been added to it.