forked from reduxframework/redux-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample-config.php
2385 lines (2261 loc) · 117 KB
/
sample-config.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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* ReduxFramework Sample Config File
* For full documentation, please visit: http://docs.reduxframework.com/
*/
if ( ! class_exists( 'Redux' ) ) {
return;
}
// This is your option name where all the Redux data is stored.
$opt_name = "redux_demo";
// This line is only for altering the demo. Can be easily removed.
$opt_name = apply_filters( 'redux_demo/opt_name', $opt_name );
/*
*
* --> Used within different fields. Simply examples. Search for ACTUAL DECLARATION for field examples
*
*/
$sampleHTML = '';
if ( file_exists( dirname( __FILE__ ) . '/info-html.html' ) ) {
Redux_Functions::initWpFilesystem();
global $wp_filesystem;
$sampleHTML = $wp_filesystem->get_contents( dirname( __FILE__ ) . '/info-html.html' );
}
// Background Patterns Reader
$sample_patterns_path = ReduxFramework::$_dir . '../sample/patterns/';
$sample_patterns_url = ReduxFramework::$_url . '../sample/patterns/';
$sample_patterns = array();
if ( is_dir( $sample_patterns_path ) ) {
if ( $sample_patterns_dir = opendir( $sample_patterns_path ) ) {
$sample_patterns = array();
while ( ( $sample_patterns_file = readdir( $sample_patterns_dir ) ) !== false ) {
if ( stristr( $sample_patterns_file, '.png' ) !== false || stristr( $sample_patterns_file, '.jpg' ) !== false ) {
$name = explode( '.', $sample_patterns_file );
$name = str_replace( '.' . end( $name ), '', $sample_patterns_file );
$sample_patterns[] = array(
'alt' => $name,
'img' => $sample_patterns_url . $sample_patterns_file
);
}
}
}
}
/**
* ---> SET ARGUMENTS
* All the possible arguments for Redux.
* For full documentation on arguments, please refer to: https://github.com/ReduxFramework/ReduxFramework/wiki/Arguments
* */
$theme = wp_get_theme(); // For use with some settings. Not necessary.
$args = array(
// TYPICAL -> Change these values as you need/desire
'opt_name' => $opt_name,
// This is where your data is stored in the database and also becomes your global variable name.
'display_name' => $theme->get( 'Name' ),
// Name that appears at the top of your panel
'display_version' => $theme->get( 'Version' ),
// Version that appears at the top of your panel
'menu_type' => 'menu',
//Specify if the admin menu should appear or not. Options: menu or submenu (Under appearance only)
'allow_sub_menu' => true,
// Show the sections below the admin menu item or not
'menu_title' => __( 'Sample Options', 'redux-framework-demo' ),
'page_title' => __( 'Sample Options', 'redux-framework-demo' ),
// You will need to generate a Google API key to use this feature.
// Please visit: https://developers.google.com/fonts/docs/developer_api#Auth
'google_api_key' => '',
// Set it you want google fonts to update weekly. A google_api_key value is required.
'google_update_weekly' => false,
// Must be defined to add google fonts to the typography module
'async_typography' => true,
// Use a asynchronous font on the front end or font string
//'disable_google_fonts_link' => true, // Disable this in case you want to create your own google fonts loader
'admin_bar' => true,
// Show the panel pages on the admin bar
'admin_bar_icon' => 'dashicons-portfolio',
// Choose an icon for the admin bar menu
'admin_bar_priority' => 50,
// Choose an priority for the admin bar menu
'global_variable' => '',
// Set a different name for your global variable other than the opt_name
'dev_mode' => true,
// Show the time the page took to load, etc
'update_notice' => true,
// If dev_mode is enabled, will notify developer of updated versions available in the GitHub Repo
'customizer' => true,
// Enable basic customizer support
//'open_expanded' => true, // Allow you to start the panel in an expanded way initially.
//'disable_save_warn' => true, // Disable the save warning when a user changes a field
// OPTIONAL -> Give you extra features
'page_priority' => null,
// Order where the menu appears in the admin area. If there is any conflict, something will not show. Warning.
'page_parent' => 'themes.php',
// For a full list of options, visit: http://codex.wordpress.org/Function_Reference/add_submenu_page#Parameters
'page_permissions' => 'manage_options',
// Permissions needed to access the options panel.
'menu_icon' => '',
// Specify a custom URL to an icon
'last_tab' => '',
// Force your panel to always open to a specific tab (by id)
'page_icon' => 'icon-themes',
// Icon displayed in the admin panel next to your menu_title
'page_slug' => '',
// Page slug used to denote the panel, will be based off page title then menu title then opt_name if not provided
'save_defaults' => true,
// On load save the defaults to DB before user clicks save or not
'default_show' => false,
// If true, shows the default value next to each field that is not the default value.
'default_mark' => '',
// What to print by the field's title if the value shown is default. Suggested: *
'show_import_export' => true,
// Shows the Import/Export panel when not used as a field.
// CAREFUL -> These options are for advanced use only
'transient_time' => 60 * MINUTE_IN_SECONDS,
'output' => true,
// Global shut-off for dynamic CSS output by the framework. Will also disable google fonts output
'output_tag' => true,
// Allows dynamic CSS to be generated for customizer and google fonts, but stops the dynamic CSS from going to the head
// 'footer_credit' => '', // Disable the footer credit of Redux. Please leave if you can help it.
// FUTURE -> Not in use yet, but reserved or partially implemented. Use at your own risk.
'database' => '',
// possible: options, theme_mods, theme_mods_expanded, transient. Not fully functional, warning!
'use_cdn' => true,
// If you prefer not to use the CDN for Select2, Ace Editor, and others, you may download the Redux Vendor Support plugin yourself and run locally or embed it in your code.
// HINTS
'hints' => array(
'icon' => 'el el-question-sign',
'icon_position' => 'right',
'icon_color' => 'lightgray',
'icon_size' => 'normal',
'tip_style' => array(
'color' => 'red',
'shadow' => true,
'rounded' => false,
'style' => '',
),
'tip_position' => array(
'my' => 'top left',
'at' => 'bottom right',
),
'tip_effect' => array(
'show' => array(
'effect' => 'slide',
'duration' => '500',
'event' => 'mouseover',
),
'hide' => array(
'effect' => 'slide',
'duration' => '500',
'event' => 'click mouseleave',
),
),
)
);
// ADMIN BAR LINKS -> Setup custom links in the admin bar menu as external items.
$args['admin_bar_links'][] = array(
'id' => 'redux-docs',
'href' => 'http://docs.reduxframework.com/',
'title' => __( 'Documentation', 'redux-framework-demo' ),
);
$args['admin_bar_links'][] = array(
//'id' => 'redux-support',
'href' => 'https://github.com/ReduxFramework/redux-framework/issues',
'title' => __( 'Support', 'redux-framework-demo' ),
);
$args['admin_bar_links'][] = array(
'id' => 'redux-extensions',
'href' => 'reduxframework.com/extensions',
'title' => __( 'Extensions', 'redux-framework-demo' ),
);
// SOCIAL ICONS -> Setup custom links in the footer for quick links in your panel footer icons.
$args['share_icons'][] = array(
'url' => 'https://github.com/ReduxFramework/ReduxFramework',
'title' => 'Visit us on GitHub',
'icon' => 'el el-github'
//'img' => '', // You can use icon OR img. IMG needs to be a full URL.
);
$args['share_icons'][] = array(
'url' => 'https://www.facebook.com/pages/Redux-Framework/243141545850368',
'title' => 'Like us on Facebook',
'icon' => 'el el-facebook'
);
$args['share_icons'][] = array(
'url' => 'http://twitter.com/reduxframework',
'title' => 'Follow us on Twitter',
'icon' => 'el el-twitter'
);
$args['share_icons'][] = array(
'url' => 'http://www.linkedin.com/company/redux-framework',
'title' => 'Find us on LinkedIn',
'icon' => 'el el-linkedin'
);
// Panel Intro text -> before the form
if ( ! isset( $args['global_variable'] ) || $args['global_variable'] !== false ) {
if ( ! empty( $args['global_variable'] ) ) {
$v = $args['global_variable'];
} else {
$v = str_replace( '-', '_', $args['opt_name'] );
}
$args['intro_text'] = sprintf( __( '<p>Did you know that Redux sets a global variable for you? To access any of your saved options from within your code you can use your global variable: <strong>$%1$s</strong></p>', 'redux-framework-demo' ), $v );
} else {
$args['intro_text'] = __( '<p>This text is displayed above the options panel. It isn\'t required, but more info is always better! The intro_text field accepts all HTML.</p>', 'redux-framework-demo' );
}
// Add content after the form.
$args['footer_text'] = __( '<p>This text is displayed below the options panel. It isn\'t required, but more info is always better! The footer_text field accepts all HTML.</p>', 'redux-framework-demo' );
Redux::setArgs( $opt_name, $args );
/*
* ---> END ARGUMENTS
*/
/*
* ---> START HELP TABS
*/
$tabs = array(
array(
'id' => 'redux-help-tab-1',
'title' => __( 'Theme Information 1', 'redux-framework-demo' ),
'content' => __( '<p>This is the tab content, HTML is allowed.</p>', 'redux-framework-demo' )
),
array(
'id' => 'redux-help-tab-2',
'title' => __( 'Theme Information 2', 'redux-framework-demo' ),
'content' => __( '<p>This is the tab content, HTML is allowed.</p>', 'redux-framework-demo' )
)
);
Redux::setHelpTab( $opt_name, $tabs );
// Set the help sidebar
$content = __( '<p>This is the sidebar content, HTML is allowed.</p>', 'redux-framework-demo' );
Redux::setHelpSidebar( $opt_name, $content );
/*
* <--- END HELP TABS
*/
/*
*
* ---> START SECTIONS
*
*/
/*
As of Redux 3.5+, there is an extensive API. This API can be used in a mix/match mode allowing for
*/
// -> START Basic Fields
Redux::setSection( $opt_name, array(
'title' => __( 'Basic Fields', 'redux-framework-demo' ),
'id' => 'basic',
'desc' => __( 'These are really basic fields!', 'redux-framework-demo' ),
'customizer_width' => '400px',
'icon' => 'el el-home'
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Checkbox', 'redux-framework-demo' ),
'id' => 'basic-checkbox',
'subsection' => true,
'customizer_width' => '450px',
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/checkbox/" target="_blank">docs.reduxframework.com/core/fields/checkbox/</a>',
'fields' => array(
array(
'id' => 'opt-checkbox',
'type' => 'checkbox',
'title' => __( 'Checkbox Option', 'redux-framework-demo' ),
'subtitle' => __( 'No validation can be done on this field type', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'default' => '1'// 1 = on | 0 = off
),
array(
'id' => 'opt-multi-check',
'type' => 'checkbox',
'title' => __( 'Multi Checkbox Option', 'redux-framework-demo' ),
'subtitle' => __( 'No validation can be done on this field type', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
//Must provide key => value pairs for multi checkbox options
'options' => array(
'1' => 'Opt 1',
'2' => 'Opt 2',
'3' => 'Opt 3'
),
//See how std has changed? you also don't need to specify opts that are 0.
'default' => array(
'1' => '1',
'2' => '0',
'3' => '0'
)
),
array(
'id' => 'opt-checkbox-data',
'type' => 'checkbox',
'title' => __( 'Multi Checkbox Option (with menu data)', 'redux-framework-demo' ),
'subtitle' => __( 'No validation can be done on this field type', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'data' => 'menu'
),
array(
'id' => 'opt-checkbox-sidebar',
'type' => 'checkbox',
'title' => __( 'Multi Checkbox Option (with sidebar data)', 'redux-framework-demo' ),
'subtitle' => __( 'No validation can be done on this field type', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'data' => 'sidebars'
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Radio', 'redux-framework-demo' ),
'id' => 'basic-Radio',
'subsection' => true,
'customizer_width' => '500px',
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/radio/" target="_blank">docs.reduxframework.com/core/fields/radio/</a>',
'fields' => array(
array(
'id' => 'opt-radio',
'type' => 'radio',
'title' => __( 'Radio Option', 'redux-framework-demo' ),
'subtitle' => __( 'No validation can be done on this field type', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
//Must provide key => value pairs for radio options
'options' => array(
'1' => 'Opt 1',
'2' => 'Opt 2',
'3' => 'Opt 3'
),
'default' => '2'
),
array(
'id' => 'opt-radio-data',
'type' => 'radio',
'title' => __( 'Radio Option w/ Menu Data', 'redux-framework-demo' ),
'subtitle' => __( 'No validation can be done on this field type', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'data' => 'menu'
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Sortable', 'redux-framework-demo' ),
'id' => 'basic-Sortable',
'subsection' => true,
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/sortable/" target="_blank">docs.reduxframework.com/core/fields/sortable/</a>',
'fields' => array(
array(
'id' => 'opt-sortable',
'type' => 'sortable',
'title' => __( 'Sortable Text Option', 'redux-framework-demo' ),
'subtitle' => __( 'Define and reorder these however you want.', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'label' => true,
'options' => array(
'Text One' => 'Item 1',
'Text Two' => 'Item 2',
'Text Three' => 'Item 3',
)
),
array(
'id' => 'opt-check-sortable',
'type' => 'sortable',
'mode' => 'checkbox', // checkbox or text
'title' => __( 'Sortable Text Option', 'redux-framework-demo' ),
'subtitle' => __( 'Define and reorder these however you want.', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'options' => array(
'cb1' => 'Checkbox One',
'cb2' => 'Checkbox Two',
'cb3' => 'Checkbox Three',
),
'default' => array(
'cb1' => false,
'cb2' => true,
'cb3' => false,
)
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Text', 'redux-framework-demo' ),
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/text/" target="_blank">docs.reduxframework.com/core/fields/text/</a>',
'id' => 'basic-Text',
'subsection' => true,
'customizer_width' => '700px',
'fields' => array(
array(
'id' => 'text-example',
'type' => 'text',
'title' => __( 'Text Field', 'redux-framework-demo' ),
'subtitle' => __( 'Subtitle', 'redux-framework-demo' ),
'desc' => __( 'Field Description', 'redux-framework-demo' ),
'default' => 'Default Text',
),
array(
'id' => 'text-example-hint',
'type' => 'text',
'title' => __( 'Text Field w/ Hint', 'redux-framework-demo' ),
'subtitle' => __( 'Subtitle', 'redux-framework-demo' ),
'desc' => __( 'Field Description', 'redux-framework-demo' ),
'default' => 'Default Text',
'text_hint' => array(
'title' => 'Hint Title',
'content' => 'Hint content about this field!'
)
),
array(
'id' => 'text-placeholder',
'type' => 'text',
'title' => __( 'Text Field', 'redux-framework-demo' ),
'subtitle' => __( 'Subtitle', 'redux-framework-demo' ),
'desc' => __( 'Field Description', 'redux-framework-demo' ),
'placeholder' => 'Placeholder Text',
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Multi Text', 'redux-framework-demo' ),
'id' => 'basic-Multi Text',
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/multi-text/" target="_blank">docs.reduxframework.com/core/fields/multi-text/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-multitext',
'type' => 'multi_text',
'title' => __( 'Multi Text Option', 'redux-framework-demo' ),
'subtitle' => __( 'Field subtitle', 'redux-framework-demo' ),
'desc' => __( 'Field Decription', 'redux-framework-demo' )
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Password', 'redux-framework-demo' ),
'id' => 'basic-Password',
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/password/" target="_blank">docs.reduxframework.com/core/fields/password/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'password',
'type' => 'password',
'username' => true,
'title' => 'Password Field',
//'placeholder' => array(
// 'username' => 'Username',
// 'password' => 'Password',
//)
)
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Textarea', 'redux-framework-demo' ),
'id' => 'basic-Textarea',
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/textarea/" target="_blank">docs.reduxframework.com/core/fields/textarea/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-textarea',
'type' => 'textarea',
'title' => __( 'Textarea Option - HTML Validated Custom', 'redux-framework-demo' ),
'subtitle' => __( 'Subtitle', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'default' => 'Default Text',
)
)
) );
// -> START Editors
Redux::setSection( $opt_name, array(
'title' => __( 'Editors', 'redux-framework-demo' ),
'id' => 'editor',
'customizer_width' => '500px',
'icon' => 'el el-edit',
) );
Redux::setSection( $opt_name, array(
'title' => __( 'WordPress Editor', 'redux-framework-demo' ),
'id' => 'editor-wordpress',
//'icon' => 'el el-home'
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/editor/" target="_blank">docs.reduxframework.com/core/fields/editor/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-editor',
'type' => 'editor',
'title' => __( 'Editor', 'redux-framework-demo' ),
'subtitle' => __( 'Use any of the features of WordPress editor inside your panel!', 'redux-framework-demo' ),
'default' => 'Powered by Redux Framework.',
),
array(
'id' => 'opt-editor-tiny',
'type' => 'editor',
'title' => __( 'Editor w/o Media Button', 'redux-framework-demo' ),
'default' => 'Powered by Redux Framework.',
'args' => array(
'wpautop' => false,
'media_buttons' => false,
'textarea_rows' => 5,
//'tabindex' => 1,
//'editor_css' => '',
'teeny' => false,
//'tinymce' => array(),
'quicktags' => false,
)
),
array(
'id' => 'opt-editor-full',
'type' => 'editor',
'title' => __( 'Editor - Full Width', 'redux-framework-demo' ),
'full_width' => true
),
),
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/editor/" target="_blank">docs.reduxframework.com/core/fields/editor/</a>',
) );
Redux::setSection( $opt_name, array(
'title' => __( 'ACE Editor', 'redux-framework-demo' ),
'id' => 'editor-ace',
//'icon' => 'el el-home'
'subsection' => true,
'desc' => __( 'For full documentation on the this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/ace-editor/" target="_blank">docs.reduxframework.com/core/fields/ace-editor/</a>',
'fields' => array(
array(
'id' => 'opt-ace-editor-css',
'type' => 'ace_editor',
'title' => __( 'CSS Code', 'redux-framework-demo' ),
'subtitle' => __( 'Paste your CSS code here.', 'redux-framework-demo' ),
'mode' => 'css',
'theme' => 'monokai',
'desc' => 'Possible modes can be found at <a href="' . 'http://' . 'ace.c9.io" target="_blank">' . 'http://' . 'ace.c9.io/</a>.',
'default' => "#header{\n margin: 0 auto;\n}"
),
array(
'id' => 'opt-ace-editor-js',
'type' => 'ace_editor',
'title' => __( 'JS Code', 'redux-framework-demo' ),
'subtitle' => __( 'Paste your JS code here.', 'redux-framework-demo' ),
'mode' => 'javascript',
'theme' => 'chrome',
'desc' => 'Possible modes can be found at <a href="' . 'http://' . 'ace.c9.io" target="_blank">' . 'http://' . 'ace.c9.io/</a>.',
'default' => "jQuery(document).ready(function(){\n\n});"
),
array(
'id' => 'opt-ace-editor-php',
'type' => 'ace_editor',
'full_width' => true,
'title' => __( 'PHP Code', 'redux-framework-demo' ),
'subtitle' => __( 'Paste your PHP code here.', 'redux-framework-demo' ),
'mode' => 'php',
'theme' => 'chrome',
'desc' => 'Possible modes can be found at <a href="' . 'http://' . 'ace.c9.io" target="_blank">' . 'http://' . 'ace.c9.io/</a>.',
'default' => '<?php
echo "PHP String";'
),
)
) );
// -> START Color Selection
Redux::setSection( $opt_name, array(
'title' => __( 'Color Selection', 'redux-framework-demo' ),
'id' => 'color',
'desc' => __( '', 'redux-framework-demo' ),
'icon' => 'el el-brush'
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Color', 'redux-framework-demo' ),
'id' => 'color-Color',
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/color/" target="_blank">docs.reduxframework.com/core/fields/color/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-color-title',
'type' => 'color',
'output' => array( '.site-title' ),
'title' => __( 'Site Title Color', 'redux-framework-demo' ),
'subtitle' => __( 'Pick a title color for the theme (default: #000).', 'redux-framework-demo' ),
'default' => '#000000',
),
array(
'id' => 'opt-color-footer',
'type' => 'color',
'title' => __( 'Footer Background Color', 'redux-framework-demo' ),
'subtitle' => __( 'Pick a background color for the footer (default: #dd9933).', 'redux-framework-demo' ),
'default' => '#dd9933',
'validate' => 'color',
),
),
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Color Gradient', 'redux-framework-demo' ),
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/color-gradient/" target="_blank">docs.reduxframework.com/core/fields/color-gradient/</a>',
'id' => 'color-gradient',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-color-header',
'type' => 'color_gradient',
'title' => __( 'Header Gradient Color Option', 'redux-framework-demo' ),
'subtitle' => __( 'Only color validation can be done on this field type', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'default' => array(
'from' => '#1e73be',
'to' => '#00897e'
)
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Color RGBA', 'redux-framework-demo' ),
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/color-rgba/" target="_blank">docs.reduxframework.com/core/fields/color-rgba/</a>',
'id' => 'color-rgba',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-color-rgba',
'type' => 'color_rgba',
'title' => __( 'Color RGBA', 'redux-framework-demo' ),
'subtitle' => __( 'Gives you the RGBA color.', 'redux-framework-demo' ),
'default' => array(
'color' => '#7e33dd',
'alpha' => '.8'
),
//'output' => array( 'body' ),
'mode' => 'background',
//'validate' => 'colorrgba',
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Link Color', 'redux-framework-demo' ),
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/link-color/" target="_blank">docs.reduxframework.com/core/fields/link-color/</a>',
'id' => 'color-link',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-link-color',
'type' => 'link_color',
'title' => __( 'Links Color Option', 'redux-framework-demo' ),
'subtitle' => __( 'Only color validation can be done on this field type', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
//'regular' => false, // Disable Regular Color
//'hover' => false, // Disable Hover Color
//'active' => false, // Disable Active Color
//'visited' => true, // Enable Visited Color
'default' => array(
'regular' => '#aaa',
'hover' => '#bbb',
'active' => '#ccc',
)
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Palette Colors', 'redux-framework-demo' ),
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/palette-color/" target="_blank">docs.reduxframework.com/core/fields/palette-color/</a>',
'id' => 'color-palette',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-palette-color',
'type' => 'palette',
'title' => __( 'Palette Color Option', 'redux-framework-demo' ),
'subtitle' => __( 'Only color validation can be done on this field type', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'default' => 'red',
'palettes' => array(
'red' => array(
'#ef9a9a',
'#f44336',
'#ff1744',
),
'pink' => array(
'#fce4ec',
'#f06292',
'#e91e63',
'#ad1457',
'#f50057',
),
'cyan' => array(
'#e0f7fa',
'#80deea',
'#26c6da',
'#0097a7',
'#00e5ff',
),
)
),
)
) );
// -> START Design Fields
Redux::setSection( $opt_name, array(
'title' => __( 'Design Fields', 'redux-framework-demo' ),
'id' => 'design',
'desc' => __( '', 'redux-framework-demo' ),
'icon' => 'el el-wrench'
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Background', 'redux-framework-demo' ),
'id' => 'design-background',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-background',
'type' => 'background',
'output' => array( 'body' ),
'title' => __( 'Body Background', 'redux-framework-demo' ),
'subtitle' => __( 'Body background with image, color, etc.', 'redux-framework-demo' ),
//'default' => '#FFFFFF',
),
),
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/background/" target="_blank">docs.reduxframework.com/core/fields/background/</a>',
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Border', 'redux-framework-demo' ),
'id' => 'design-border',
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/border/" target="_blank">docs.reduxframework.com/core/fields/border/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-header-border',
'type' => 'border',
'title' => __( 'Header Border Option', 'redux-framework-demo' ),
'subtitle' => __( 'Only color validation can be done on this field type', 'redux-framework-demo' ),
'output' => array( '.site-header' ),
// An array of CSS selectors to apply this font style to
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'default' => array(
'border-color' => '#1e73be',
'border-style' => 'solid',
'border-top' => '3px',
'border-right' => '3px',
'border-bottom' => '3px',
'border-left' => '3px'
)
),
array(
'id' => 'opt-header-border-expanded',
'type' => 'border',
'title' => __( 'Header Border Option', 'redux-framework-demo' ),
'subtitle' => __( 'Only color validation can be done on this field type', 'redux-framework-demo' ),
'output' => array( '.site-header' ),
'all' => false,
// An array of CSS selectors to apply this font style to
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
'default' => array(
'border-color' => '#1e73be',
'border-style' => 'solid',
'border-top' => '3px',
'border-right' => '3px',
'border-bottom' => '3px',
'border-left' => '3px'
)
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Dimensions', 'redux-framework-demo' ),
'id' => 'design-dimensions',
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/dimensions/" target="_blank">docs.reduxframework.com/core/fields/dimensions/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-dimensions',
'type' => 'dimensions',
'units' => array( 'em', 'px', '%' ), // You can specify a unit value. Possible: px, em, %
'units_extended' => 'true', // Allow users to select any type of unit
'title' => __( 'Dimensions (Width/Height) Option', 'redux-framework-demo' ),
'subtitle' => __( 'Allow your users to choose width, height, and/or unit.', 'redux-framework-demo' ),
'desc' => __( 'You can enable or disable any piece of this field. Width, Height, or Units.', 'redux-framework-demo' ),
'default' => array(
'width' => 200,
'height' => 100,
)
),
array(
'id' => 'opt-dimensions-width',
'type' => 'dimensions',
'units' => array( 'em', 'px', '%' ), // You can specify a unit value. Possible: px, em, %
'units_extended' => 'true', // Allow users to select any type of unit
'title' => __( 'Dimensions (Width) Option', 'redux-framework-demo' ),
'subtitle' => __( 'Allow your users to choose width, height, and/or unit.', 'redux-framework-demo' ),
'desc' => __( 'You can enable or disable any piece of this field. Width, Height, or Units.', 'redux-framework-demo' ),
'height' => false,
'default' => array(
'width' => 200,
'height' => 100,
)
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Spacing', 'redux-framework-demo' ),
'id' => 'design-spacing',
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/spacing/" target="_blank">docs.reduxframework.com/core/fields/spacing/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-spacing',
'type' => 'spacing',
'output' => array( '.site-header' ),
// An array of CSS selectors to apply this font style to
'mode' => 'margin',
// absolute, padding, margin, defaults to padding
'all' => true,
// Have one field that applies to all
//'top' => false, // Disable the top
//'right' => false, // Disable the right
//'bottom' => false, // Disable the bottom
//'left' => false, // Disable the left
//'units' => 'em', // You can specify a unit value. Possible: px, em, %
//'units_extended'=> 'true', // Allow users to select any type of unit
//'display_units' => 'false', // Set to false to hide the units if the units are specified
'title' => __( 'Padding/Margin Option', 'redux-framework-demo' ),
'subtitle' => __( 'Allow your users to choose the spacing or margin they want.', 'redux-framework-demo' ),
'desc' => __( 'You can enable or disable any piece of this field. Top, Right, Bottom, Left, or Units.', 'redux-framework-demo' ),
'default' => array(
'margin-top' => '1px',
'margin-right' => '2px',
'margin-bottom' => '3px',
'margin-left' => '4px'
)
),
array(
'id' => 'opt-spacing-expanded',
'type' => 'spacing',
// An array of CSS selectors to apply this font style to
'mode' => 'margin',
// absolute, padding, margin, defaults to padding
'all' => false,
// Have one field that applies to all
//'top' => false, // Disable the top
//'right' => false, // Disable the right
//'bottom' => false, // Disable the bottom
//'left' => false, // Disable the left
'units' => array( 'em', 'px', '%' ), // You can specify a unit value. Possible: px, em, %
'units_extended' => 'true', // Allow users to select any type of unit
//'display_units' => 'false', // Set to false to hide the units if the units are specified
'title' => __( 'Padding/Margin Option', 'redux-framework-demo' ),
'subtitle' => __( 'Allow your users to choose the spacing or margin they want.', 'redux-framework-demo' ),
'desc' => __( 'You can enable or disable any piece of this field. Top, Right, Bottom, Left, or Units.', 'redux-framework-demo' ),
'default' => array(
'margin-top' => '1px',
'margin-right' => '2px',
'margin-bottom' => '3px',
'margin-left' => '4px'
)
),
)
) );
// -> START Media Uploads
Redux::setSection( $opt_name, array(
'title' => __( 'Media Uploads', 'redux-framework-demo' ),
'id' => 'media',
'desc' => __( '', 'redux-framework-demo' ),
'icon' => 'el el-picture'
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Gallery', 'redux-framework-demo' ),
'id' => 'media-gallery',
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/gallery/" target="_blank">docs.reduxframework.com/core/fields/gallery/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-gallery',
'type' => 'gallery',
'title' => __( 'Add/Edit Gallery', 'redux-framework-demo' ),
'subtitle' => __( 'Create a new Gallery by selecting existing or uploading new images using the WordPress native uploader', 'redux-framework-demo' ),
'desc' => __( 'This is the description field, again good for additional info.', 'redux-framework-demo' ),
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Media', 'redux-framework-demo' ),
'id' => 'media-media',
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/media/" target="_blank">docs.reduxframework.com/core/fields/media/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-media',
'type' => 'media',
'url' => true,
'title' => __( 'Media w/ URL', 'redux-framework-demo' ),
'compiler' => 'true',
//'mode' => false, // Can be set to false to allow any media type, or can also be set to any mime type.
'desc' => __( 'Basic media uploader with disabled URL input field.', 'redux-framework-demo' ),
'subtitle' => __( 'Upload any media using the WordPress native uploader', 'redux-framework-demo' ),
'default' => array( 'url' => 'http://s.wordpress.org/style/images/codeispoetry.png' ),
//'hint' => array(
// 'title' => 'Hint Title',
// 'content' => 'This is a <b>hint</b> for the media field with a Title.',
//)
),
array(
'id' => 'media-no-url',
'type' => 'media',
'title' => __( 'Media w/o URL', 'redux-framework-demo' ),
'desc' => __( 'This represents the minimalistic view. It does not have the preview box or the display URL in an input box. ', 'redux-framework-demo' ),
'subtitle' => __( 'Upload any media using the WordPress native uploader', 'redux-framework-demo' ),
),
array(
'id' => 'media-no-preview',
'type' => 'media',
'preview' => false,
'title' => __( 'Media No Preview', 'redux-framework-demo' ),
'desc' => __( 'This represents the minimalistic view. It does not have the preview box or the display URL in an input box. ', 'redux-framework-demo' ),
'subtitle' => __( 'Upload any media using the WordPress native uploader', 'redux-framework-demo' ),
'hint' => array(
'title' => 'Test',
'content' => 'This is a <b>hint</b> tool-tip for the webFonts field.<br/><br/>Add any HTML based text you like here.',
)
),
array(
'id' => 'opt-random-upload',
'type' => 'media',
'title' => __( 'Upload Anything - Disabled Mode', 'redux-framework-demo' ),
'full_width' => true,
'mode' => false,
// Can be set to false to allow any media type, or can also be set to any mime type.
'desc' => __( 'Basic media uploader with disabled URL input field.', 'redux-framework-demo' ),
'subtitle' => __( 'Upload any media using the WordPress native uploader', 'redux-framework-demo' ),
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Slides', 'redux-framework-demo' ),
'id' => 'additional-slides',
'desc' => __( 'For full documentation on this field, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/slides/" target="_blank">docs.reduxframework.com/core/fields/slides/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-slides',
'type' => 'slides',
'title' => __( 'Slides Options', 'redux-framework-demo' ),
'subtitle' => __( 'Unlimited slides with drag and drop sortings.', 'redux-framework-demo' ),
'desc' => __( 'This field will store all slides values into a multidimensional array to use into a foreach loop.', 'redux-framework-demo' ),
'placeholder' => array(
'title' => __( 'This is a title', 'redux-framework-demo' ),
'description' => __( 'Description Here', 'redux-framework-demo' ),
'url' => __( 'Give us a link!', 'redux-framework-demo' ),
),
),
)
) );
// -> START Presentation Fields
Redux::setSection( $opt_name, array(
'title' => __( 'Presentation Fields', 'redux-framework-demo' ),
'id' => 'presentation',
'desc' => __( '', 'redux-framework-demo' ),