1 | <?php |
||
20 | class Kirki_Settings_Repeater_Setting extends WP_Customize_Setting { |
||
21 | |||
22 | /** |
||
23 | * Constructor. |
||
24 | * |
||
25 | * Any supplied $args override class property defaults. |
||
26 | * |
||
27 | * @access public |
||
28 | * @param WP_Customize_Manager $manager The WordPress WP_Customize_Manager object. |
||
29 | * @param string $id A specific ID of the setting. Can be a theme mod or option name. |
||
30 | * @param array $args Setting arguments. |
||
31 | */ |
||
32 | public function __construct( $manager, $id, $args = array() ) { |
||
38 | |||
39 | /** |
||
40 | * Fetch the value of the setting. |
||
41 | * |
||
42 | * @access public |
||
43 | * @return mixed The value. |
||
44 | */ |
||
45 | public function value() { |
||
53 | |||
54 | /** |
||
55 | * Convert the JSON encoded setting coming from Customizer to an Array. |
||
56 | * |
||
57 | * @access public |
||
58 | * @param string $value URL Encoded JSON Value. |
||
59 | * @return array |
||
60 | */ |
||
61 | public function sanitize_repeater_setting( $value ) { |
||
85 | } |
||
86 |