1 | <?php |
||
15 | class Kirki_Controls { |
||
16 | |||
17 | /** |
||
18 | * An array of templates to load. |
||
19 | * |
||
20 | * @access private |
||
21 | * @since 3.0.17 |
||
22 | * @var array |
||
23 | */ |
||
24 | private $templates = array( |
||
25 | 'input-color', |
||
26 | 'input-radio', |
||
27 | ); |
||
28 | |||
29 | /** |
||
30 | * Path to controls views. |
||
31 | * |
||
32 | * @access private |
||
33 | * @since 3.0.17 |
||
34 | * @var string |
||
35 | */ |
||
36 | private $views_path; |
||
37 | |||
38 | /** |
||
39 | * Constructor. |
||
40 | * |
||
41 | * @access public |
||
42 | * @since 3.0.17 |
||
43 | */ |
||
44 | public function __construct() { |
||
51 | |||
52 | /** |
||
53 | * Adds underscore.js templates to the footer. |
||
54 | * |
||
55 | * @access public |
||
56 | * @since 3.0.17 |
||
57 | * @return void |
||
58 | */ |
||
59 | public function underscore_templates() { |
||
68 | } |
||
69 |