1 | <?php |
||
16 | class Kirki_Modules_Resize { |
||
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 | * @since 3.0.0 |
||
33 | */ |
||
34 | protected function __construct() { |
||
37 | |||
38 | /** |
||
39 | * Gets an instance of this object. |
||
40 | * Prevents duplicate instances which avoid artefacts and improves performance. |
||
41 | * |
||
42 | * @static |
||
43 | * @access public |
||
44 | * @since 3.0.0 |
||
45 | * @return object |
||
46 | */ |
||
47 | public static function get_instance() { |
||
53 | |||
54 | /** |
||
55 | * Enqueue scripts. |
||
56 | * |
||
57 | * @access public |
||
58 | * @since 3.0.0 |
||
59 | */ |
||
60 | public function enqueue_scripts() { |
||
65 | } |
||
66 |