1 | <?php |
||
11 | class Kirki_Modules_Post_Meta { |
||
12 | |||
13 | /** |
||
14 | * The object instance. |
||
15 | * |
||
16 | * @static |
||
17 | * @access private |
||
18 | * @since 3.0.0 |
||
19 | * @var object |
||
20 | */ |
||
21 | private static $instance; |
||
22 | |||
23 | /** |
||
24 | * Gets an instance of this object. |
||
25 | * Prevents duplicate instances which avoid artefacts and improves performance. |
||
26 | * |
||
27 | * @static |
||
28 | * @access public |
||
29 | * @since 3.0.0 |
||
30 | * @return object |
||
31 | */ |
||
32 | public static function get_instance() { |
||
38 | |||
39 | /** |
||
40 | * Constructor. |
||
41 | * |
||
42 | * @access protected |
||
43 | * @since 3.1.0 |
||
44 | */ |
||
45 | protected function __construct() { |
||
50 | |||
51 | /** |
||
52 | * Enqueue Customizer control scripts. |
||
53 | * |
||
54 | * @access public |
||
55 | * @since 3.1.0 |
||
56 | */ |
||
57 | public function enqueue_control_scripts() { |
||
61 | |||
62 | /** |
||
63 | * Initialize Customizer preview. |
||
64 | * |
||
65 | * @access public |
||
66 | * @since 3.1.0 |
||
67 | */ |
||
68 | public function customize_preview_init() { |
||
72 | |||
73 | /** |
||
74 | * Enqueue script for Customizer preview. |
||
75 | * |
||
76 | * @access public |
||
77 | * @since 3.1.0 |
||
78 | */ |
||
79 | public function enqueue_preview_scripts() { |
||
91 | } |
||
92 |