PluginProbe
Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI / 3.4.0
Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI v3.4.0
3.6.1 3.6.0 3.5.3 3.5.2 3.5.1 3.5.0 3.4.8 3.4.7 3.4.6 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.5.1 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 All 165 releases
everest-forms / addons / StyleCustomizer / StyleCustomizer.php
StyleCustomizer.php
48 lines 743 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Style Customizer.
4 *
5 * @since 3.0.5
6 * @package EverestForms\Addons\StyleCustomizer
7 */
8
9 namespace EverestForms\Addons\StyleCustomizer;
10
11 use EverestForms\Traits\Singleton;
12
13 /**
14 * Style Customizer.
15 *
16 * @since 3.0.5
17 */
18 class StyleCustomizer {
19
20 use Singleton;
21
22 /**
23 * Constructor.
24 *
25 * @since 3.0.5
26 */
27 public function __construct() {
28 $this->setup();
29 }
30
31 /**
32 * Setup the customizer.
33 *
34 * @since 3.0.5
35 */
36 public function setup() {
37
38 if ( ! class_exists( 'EverestForms_Style_Customizer' ) ) {
39 include_once dirname( __FILE__ ) . '/includes/class-everest-forms-style-customizer.php';
40 }
41
42
43 if ( class_exists( 'EverestForms_Style_Customizer' ) ) {
44 \EverestForms_Style_Customizer::get_instance();
45 }
46 }
47 }
48