-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
149 lines (142 loc) · 3.55 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<?php get_header(); ?>
<?php
$settings_keys = array(
// Customize Plus controls
'api-theme_mod',
'api-option',
'color',
'color-no-transparent',
'color-no-alpha',
'color-palette1',
'color-palette2',
'color-palette3',
'radio',
'buttonset',
'buttonset-three',
'buttonset-four',
'radio-image',
'radio-image-custom',
'slider',
'slider-em',
'slider-px-percent',
'slider-no-units',
'number',
'number-float',
'number-min',
'number-max',
'number-step',
'checkbox',
'toggle',
'toggle-with-labels',
'multicheck',
'multicheck-sortable',
'multicheck-sortable-max',
'select',
'select-native',
'select-options',
'select-multiple',
'select-tags',
'tags',
'tags-removable',
'tags-sortable-removable',
'tags-max-items',
'sortable',
'font-family',
'font-family-with-options',
'font-family-just-one-monospace',
'font-weight',
'text',
'text-max-length',
'text-optional',
'text-url',
'text-email',
'text-tel',
'text-pattern',
'password',
'password-visibility',
'textarea',
'textarea-html-escape',
'textarea-html-dangerous',
'textarea-html-tags',
'textarea-html-context',
'textarea-wp_editor',
'textarea-wp_editor-options',
'textarea-wp_editor-no-quicktags',
'dashicon',
'dashicons-max',
'dashicons-max-from',
// // Customize Plus Premium controls
// 'color-dynamic-active',
// 'color-dynamic-passive',
// 'color-dynamic-hidetab-active',
// 'color-dynamic-hidetab-passive',
// 'size-dynamic-active',
// 'size-dynamic-passive',
// 'size-dynamic-hidetab-active',
// 'size-dynamic-hidetab-passive',
// 'knob',
// 'knob-options',
// 'date',
// 'date-inline',
// WordPress controls
'wp-color',
'wp-media',
'wp-image',
'wp-background',
'wp-upload',
'wp-cropped',
'wp-site',
'wp-header',
);
?>
<?php
if ( ! function_exists( 'kk_get_theme_mod' ) ) {
echo 'Customize Plus is inactive, does not exists.
Activate the plugin in order to view this demo.';
get_footer();
return;
}
?>
<div class="alert alert-info mb-4">
<small>For preview purposes values that are saved as <code>array</code>
are 'JSONified' with php function <code>json_encode</code> and through
JavaScript <code>JSON.stringify()</code>.
</small>
</div>
<div class="row previews">
<?php
foreach ( $settings_keys as $key ) {
$settings_api_keys = array(
'api-option'
);
$is_jsonified = false;
if ( in_array( $key, $settings_api_keys ) ) {
// either use the static method on the theme class:
// $value = Customize_Plus_Demo::get_option( $key );
// or use the global functions Customize Plus makes available:
$value = kk_get_option( $key );
$key = kk_get_option_id_attr( $key );
} else {
// either use the static method on the theme class:
// $value = Customize_Plus_Demo::get_theme_mod( $key );
// or use the global functions Customize Plus makes available
$value = kk_get_theme_mod( $key );
if ( is_array( $value ) ) {
$value = json_encode( $value );
$is_jsonified = true;
}
} ?>
<?php if ( $is_jsonified ) { ?>
<div class="col-6 col-sm-4 col-md-4 col-lg-3 col-xl-2"
data-toggle="popover" data-content="For preview purposes values that are
saved as <code>array</code> are 'JSONified' with php function <code>
json_encode</code> and through JavaScript <code>JSON.stringify()</code>">
<?php } else { ?>
<div class="col-6 col-sm-4 col-md-4 col-lg-3 col-xl-2">
<?php } ?>
<?php echo "<div class='setting-name' title='$key'>$key</div>"; ?>
<?php echo "<div class='setting-preview' id='$key' title='Setting: $key'>$value</div>"; ?>
</div>
<?php } ?>
</div>
<?php get_footer();