1 | <?php |
||
16 | class Kirki_Modules_Reset { |
||
17 | |||
18 | /** |
||
19 | * The object instance. |
||
20 | * |
||
21 | * @static |
||
22 | * @access private |
||
23 | * @since 3.0.0 |
||
24 | * @var object |
||
25 | */ |
||
26 | private static $instance; |
||
27 | |||
28 | /** |
||
29 | * Constructor. |
||
30 | * |
||
31 | * @access protected |
||
32 | */ |
||
33 | protected function __construct() { |
||
36 | |||
37 | /** |
||
38 | * Gets an instance of this object. |
||
39 | * Prevents duplicate instances which avoid artefacts and improves performance. |
||
40 | * |
||
41 | * @static |
||
42 | * @access public |
||
43 | * @since 3.0.0 |
||
44 | * @return object |
||
45 | */ |
||
46 | public static function get_instance() { |
||
52 | |||
53 | /** |
||
54 | * Enqueue scripts |
||
55 | * |
||
56 | * @access public |
||
57 | * @since 3.0.0 |
||
58 | */ |
||
59 | public function customize_controls_enqueue_scripts() { |
||
72 | } |
||
73 |