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 | 'color', |
||
26 | 'generic', |
||
27 | 'radio', |
||
28 | 'select', |
||
29 | 'textarea', |
||
30 | ); |
||
31 | |||
32 | /** |
||
33 | * Path to controls views. |
||
34 | * |
||
35 | * @access private |
||
36 | * @since 3.0.17 |
||
37 | * @var string |
||
38 | */ |
||
39 | private $views_path; |
||
40 | |||
41 | /** |
||
42 | * Constructor. |
||
43 | * |
||
44 | * @access public |
||
45 | * @since 3.0.17 |
||
46 | */ |
||
47 | public function __construct() { |
||
54 | |||
55 | /** |
||
56 | * Adds underscore.js templates to the footer. |
||
57 | * |
||
58 | * @access public |
||
59 | * @since 3.0.17 |
||
60 | */ |
||
61 | public function underscore_templates() { |
||
70 | } |
||
71 |