-
Notifications
You must be signed in to change notification settings - Fork 0
/
ebor_options.php
executable file
·326 lines (276 loc) · 8.52 KB
/
ebor_options.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
<?php
/**
* Ebor Options Class
*
* A quick and easy way of building theme options.
* The WordPress Customization API is really simple to use, but if you have a lot of options, it can create a bit of a mess.
* This class aims to fix that by allowing you to add sections and settings with just 1 function call from your themes functions.php file.
*
* @author TommusRhodus
* @since 1.0.0
*/
class Ebor_Options {
/**
* Define the arrays we'll use for building our options
*/
public $panels = array();
public $sections = array();
public $settings = array();
/**
* Define functions called as this class is initialised.
* additional_classes are the custom controls we use in the customiser
* build_options runs through all of our added options and turns them into proper customization API options
*/
public function __construct(){
add_action('customize_register', 'ebor_additional_classes', 10 );
add_action('customize_register', array( $this, 'build_options' ), 15 );
}
public function add_panel($title, $priority, $description = ''){
$this->panels[] = array(
'title' => $title,
'priority' => $priority,
'description' => $description
);
}
/**
* This function adds customizations sections
*/
public function add_section($name, $title, $priority, $panel = '', $description = ''){
global $wp_version;
if( $wp_version >= 4.0 ){
$this->sections[] = array(
'name' => $name,
'title' => $title,
'priority' => $priority,
'description'=> $description,
'panel' => $panel
);
} else {
$this->sections[] = array(
'name' => $name,
'title' => $title,
'priority' => $priority,
'description'=> $description
);
}
}
/**
* This function adds customization settings
*/
public function add_setting($type, $name, $title, $section, $default = '', $priority = '', $options = array()){
$this->settings[] = array(
'type' => $type,
'name' => $name,
'title' => $title,
'section' => $section,
'default' => $default,
'priority' => $priority,
'options' => $options
);
}
/**
* Custom mrancho remove or overrite default section and panels settings
* Remove the section and panels from the Customizer.
* @param $wp_customize WP_Customize_Manager
*/
public function ebor_theme_customize($wp_customize) {
global $wp_customize;
/* Change priority of WordPress dafault sections - higher priority moves to last */
$wp_customize->get_section( 'title_tagline' )->priority = 600;
$wp_customize->get_panel( 'nav_menus' )->priority = 620;
//$wp_customize->get_panel( 'widgets' )->priority = 630;
$wp_customize->get_section( 'static_front_page' )->priority = 640;
$wp_customize->remove_section( 'colors' );
$wp_customize->remove_section('background_image');
}
/**
* Finally, run through our array and build theme options!
*/
public function build_options($wp_customize){
global $wp_version;
/**
* Build Panels
*/
if( is_array($this->panels) && $wp_version >= 4.0 ){
foreach( $this->panels as $panel ){
extract($panel);
$wp_customize->add_panel(
$title, array(
'title' => $title,
'description' => $description,
'priority' => $priority
)
);
}
}
/**
* Build Sections
*/
if( is_array($this->sections) ){
foreach( $this->sections as $section ){
extract( $section );
$wp_customize->add_section(
$name, array(
'title' => $title,
'description' => $description,
'priority' => $priority,
'panel' => $panel
)
);
}
}
/**
* Build Settings
*/
if( is_array($this->settings) ){
foreach( $this->settings as $setting ){
extract( $setting );
$wp_customize->add_setting(
$name, array(
'default' => $default,
'type' => 'option'
)
);
if( 'image' == $type ){
$wp_customize->add_control(
new WP_Customize_Image_Control(
$wp_customize, $name, array(
'label' => $title,
'section' => $section,
'priority' => $priority
)
)
);
} elseif( 'color' == $type || 'colour' == $type ){
$wp_customize->add_control(
new WP_Customize_Color_Control(
$wp_customize, $name, array(
'label' => $title,
'section' => $section,
'priority' => $priority
)
)
);
} elseif( 'checkbox' == $type ){
$wp_customize->add_control(
$name, array(
'type' => 'checkbox',
'label' => $title,
'section' => $section,
'priority' => $priority
)
);
} elseif( 'number' == $type ){
$wp_customize->add_control(
new Ebor_Customizer_Number_Control(
$wp_customize, $name, array(
'label' => $title,
'section' => $section,
'priority' => $priority
)
)
);
} elseif( 'textarea' == $type ){
$wp_customize->add_control(
new Ebor_Customizer_Textarea_Control(
$wp_customize, $name, array(
'label' => $title,
'section' => $section,
'priority' => $priority
)
)
);
} elseif( 'select' == $type ){
$wp_customize->add_control(
$name, array(
'type' => 'select',
'label' => $title,
'section' => $section,
'priority' => $priority,
'choices' => $options
)
);
} elseif( 'range' == $type ){
$wp_customize->add_control(
new Ebor_Customizer_Range_Control(
$wp_customize, $name, array(
'label' => $title,
'section' => $section,
'priority' => $priority,
'choices' => $options
)
)
);
} elseif( 'demo_import' == $type ){
$wp_customize->add_control(
new Ebor_Customizer_Demo_Import_control(
$wp_customize, $name, array(
'label' => $title,
'section' => $section,
'priority' => $priority
)
)
);
} else {
$wp_customize->add_control(
$name, array(
'type' => 'text',
'label' => $title,
'section' => $section,
'priority' => $priority
)
);
}
}
}
}
}//end Ebor_Options
if(!( function_exists('ebor_additional_classes') )){
function ebor_additional_classes(){
class Ebor_Customizer_Range_Control extends WP_Customize_Control {
public $type = 'range';
public function render_content() {
?>
<label>
<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
<input <?php $this->link(); ?> name="<?php echo esc_html( ebor_sanitize_title($this->label) ); ?>" type="range" min="<?php echo $this->choices['min']; ?>" max="<?php echo $this->choices['max']; ?>" step="<?php echo $this->choices['step']; ?>" value="<?php echo intval( $this->value() ); ?>" class="ebor-range" onchange="printValue('<?php echo esc_html( ebor_sanitize_title($this->label) ); ?>')" />
<input type="text" name="<?php echo esc_html( ebor_sanitize_title($this->label) ); ?>" class="ebor-range-output" value="<?php echo intval( $this->value() ); ?>" disabled/>
</label>
<?php
}
}
class Ebor_Customizer_Textarea_Control extends WP_Customize_Control {
public $type = 'textarea';
public function render_content() {
?>
<label>
<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
<textarea rows="3" style="width:100%;" <?php $this->link(); ?>><?php echo esc_textarea( $this->value() ); ?></textarea>
</label>
<?php
}
}
class Ebor_Customizer_Number_Control extends WP_Customize_Control {
public $type = 'number';
public function render_content() {
?>
<label>
<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
<input type="number" <?php $this->link(); ?> value="<?php echo intval( $this->value() ); ?>" />
</label>
<?php
}
}
class Ebor_Customizer_Demo_Import_control extends WP_Customize_Control {
public $type = 'demo-import';
public function render_content() {
?>
<label>
<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
<a href="#" id="demo-import" class="btn button button-primary">Import Demo Data</a>
</label>
<?php
}
}
}
}