wp/wp-includes/customize/class-wp-customize-color-control.php
changeset 16 a86126ab1dd4
parent 9 177826044cd9
equal deleted inserted replaced
15:3d4e9c994f10 16:a86126ab1dd4
    39 
    39 
    40 	/**
    40 	/**
    41 	 * Constructor.
    41 	 * Constructor.
    42 	 *
    42 	 *
    43 	 * @since 3.4.0
    43 	 * @since 3.4.0
    44 	 * @uses WP_Customize_Control::__construct()
    44 	 *
       
    45 	 * @see WP_Customize_Control::__construct()
    45 	 *
    46 	 *
    46 	 * @param WP_Customize_Manager $manager Customizer bootstrap instance.
    47 	 * @param WP_Customize_Manager $manager Customizer bootstrap instance.
    47 	 * @param string               $id      Control ID.
    48 	 * @param string               $id      Control ID.
    48 	 * @param array                $args    Optional. Arguments to override class property defaults.
    49 	 * @param array                $args    Optional. Arguments to override class property defaults.
       
    50 	 *                                      See WP_Customize_Control::__construct() for information
       
    51 	 *                                      on accepted arguments. Default empty array.
    49 	 */
    52 	 */
    50 	public function __construct( $manager, $id, $args = array() ) {
    53 	public function __construct( $manager, $id, $args = array() ) {
    51 		$this->statuses = array( '' => __( 'Default' ) );
    54 		$this->statuses = array( '' => __( 'Default' ) );
    52 		parent::__construct( $manager, $id, $args );
    55 		parent::__construct( $manager, $id, $args );
    53 	}
    56 	}