equal
deleted
inserted
replaced
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 } |