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