class-options.php
54.4 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
<?php
/**
* The Mindshare Options Framework is a flexible, lightweight framework for creating WordPress theme and plugin options screens.
*
* @version 2.2
* @author Mindshare Studios, Inc.
* @copyright Copyright (c) 2014
* @link http://www.mindsharelabs.com/documentation/
*
* @credits Originally inspired by: Admin Page Class 0.9.9 by Ohad Raz http://bainternet.info
*
* @license GNU General Public License v3.0 - license.txt
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* Changelog:
*
* 2.2 - Several new features. See readme.
* 2.1.3 - Settings will now be set to their defaults and saved on first load
* 2.1.1 - Minor bugfix
* 2.1 - Added import / export, refactored pages and sections, bugfixes
* 2.0 - Major refactor in prep for public release
* 0.3.4 - some refactoring, styling for checkbox lists
* 0.3.3 - updated CodeMirror
* 0.3.2 - fixed issue with code fields. css updates
* 0.3.1 - fixed htmlspecialchars/stripslashes issue with text fields
* 0.3 - bugfixes
* 0.2.1 - fix for attribute escape problem
* 0.2 - major update, fixed import/export, added subtitle field, sanitization
* 0.1 - first release
*
* Damian and Bryce were here.
*
*
*
*/
class WPF_Options {
/**
* The MOF version number.
*
* @var string
*/
private $version = '2.1.3';
private $option_group, $setup, $sections;
// Protected so child class can update choices/values if needed
protected $settings;
// Protected so child class can update post_data if needed
protected $post_data;
// Optional variable to contain additional pages to register
private $subpages;
// Will contain all of the options as stored in the database
protected $options;
// Temporary array to contain all of the checboxes in use
private $checkboxes;
// Temporary array to contain all of the multi select fields in use
private $multi_selects;
// Temporary array to contain all of the field types currently in use
private $fields;
// Path to the Mindshare Options Framework
private $selfpath;
// Set to true if settings have been imported
private $settings_imported;
// Set to true if settings have been updated
private $settings_updated;
// Array containing errors (if any) encountered on save
private $errors;
// Is set to true when options are being reset
private $reset_options;
// Default values for the setup variable
private $default_project = array(
'project_name' => 'Untitled Project',
'project_slug' => 'untitled-project',
'menu' => 'settings',
'page_title' => 'Untitled Project Settings',
'menu_title' => 'Untitled Project',
'capability' => 'manage_options',
'option_group' => 'untitled_project_options',
'slug' => 'untitled-project-settings',
'page_icon' => 'options-general',
'icon_url' => '',
'position' => NULL
);
private $default_page = array(
'menu' => 'settings',
'page_title' => 'New Page',
'menu_title' => 'New Page',
'capability' => 'manage_options',
'slug' => 'new-page',
'page_icon' => 'options-general',
'icon_url' => '',
'position' => NULL
);
private $default_setting = array(
'title' => NULL,
'desc' => NULL,
'std' => NULL,
'type' => NULL,
'section' => '',
'class' => NULL, // class to be applied to the input
'disabled' => FALSE,
'unlock' => NULL
);
/**
* Constructor
*
* @param array $setup Contains the universal project setup parameters
* @param array $settings Contains all of the settings fields and their assigned section
* @param array $sections Contains the various sections (pages and tabs) and their relationships
* @param null $subpages
*
* @internal param array $subpages (optional) Contains subpages to be generated off of the main page if a top-level menus is being created
*
*/
public function __construct($setup, $settings, $sections = NULL, $subpages = NULL) {
// Merge default setup with user-specified setup parameters
$setup = wp_parse_args($setup, $this->default_project);
$this->selfpath = plugin_dir_url(__FILE__);
$this->setup = $setup;
$this->sections = $sections;
$this->subpages = $subpages;
$this->settings = $settings;
$this->default_setting['section'] = $setup['slug'];
// Load option group
$this->option_group = $setup['option_group'];
$this->options = get_option( 'wpf_options', array() );
// Start it up
add_action( 'init', array($this, 'init'));
}
public function init() {
if(isset($_GET['page']) && $_GET['page'] == 'wpf-settings') {
// Set options based on configured settings
$this->options = apply_filters( $this->setup['project_slug'] . '_initialize_options', $this->options);
wp_fusion()->settings->options = $this->options;
// Load in all pluggable settings
$settings = apply_filters( $this->setup['project_slug'] . '_configure_settings', $this->settings, $this->options);
// Initialize settings to default values
$this->settings = $this->initialize_settings($settings);
if(isset($_POST['action']) && $_POST['action'] == 'update' && isset($_POST[$this->setup['project_slug'].'_nonce'])) {
$this->save_options();
// Reconfigure settings based on saved options
$this->settings = apply_filters( $this->setup['project_slug'] . '_configure_settings', $this->settings, $this->options);
}
}
add_action('admin_menu', array($this, 'add_menus'));
}
/*----------------------------------------------------------------*/
/*
/* Functions to handle saving and validation of options
/*
/*----------------------------------------------------------------*/
/**
* Checks nonce and saves options to database
*
* @access private
*
* @internal param \data $_POST
*/
private function save_options() {
$nonce = $_POST[$this->setup['project_slug'].'_nonce'];
if(!isset($_POST[$this->setup['project_slug'] . '_nonce']))
return;
if(!wp_verify_nonce($nonce, $this->setup['project_slug'])) {
die('Security check. Invalid nonce.');
}
// Get array of form data
if (array_key_exists($this->option_group, $_POST)) {
$this->post_data = $_POST[$this->option_group];
} else {
$this->post_data = array();
}
// For each settings field, run the input through it's defined validation function
$settings = $this->settings;
// Beydefault $_POST ignores checkboxes with no value set, so we need to iterate through
// all defined checkboxes and set their value to 0 if they haven't been set in the input
if(isset($this->checkboxes)) {
foreach($this->checkboxes as $id) {
if(!isset($this->post_data[$id]) || $this->post_data[$id] != '1') {
$this->post_data[$id] = 0;
} else {
$this->post_data[$id] = 1;
}
}
}
// Set multi selects to default values if they're registered but haven't been posted
if(isset($this->multi_selects)) {
foreach($this->multi_selects as $id) {
if(!isset($this->post_data[$id])) {
$this->post_data[$id] = "";
}
}
}
foreach($settings as $id => $setting) {
if(isset($this->post_data[$id]) && !isset($setting['subfields'])) {
$this->post_data[$id] = $this->validate_options($id, $this->post_data[$id], $setting);
} elseif(isset($this->post_data[$id]) && isset($setting['subfields'])) {
foreach($this->post_data[$id] as $sub_id => $subfield) {
if(isset($this->post_data[$id][$sub_id])) {
$this->post_data[$id][$sub_id] = $this->validate_options($sub_id, $this->post_data[$id][$sub_id], $setting['subfields'][$sub_id]);
}
}
}
}
if($this->reset_options) {
delete_option($this->option_group);
$this->options = NULL;
// Rebuild defaults and apply filters
$settings = $this->initialize_settings($this->settings);
$this->settings = apply_filters( $this->setup['project_slug'] . '_configure_settings', $settings, $this->options);
} else {
// Merge the form data with the existing options, updating as necessary
$this->options = wp_parse_args($this->post_data, $this->options);
// Re-do init
$this->options = apply_filters( $this->setup['project_slug'] . '_initialize_options', $this->options);
// Update the option in the database
update_option($this->option_group, $this->options);
// Update the options within the class
wp_fusion()->settings->options = $this->options;
// Let the page renderer know that the settings have been updated
$this->settings_updated = true;
}
}
/**
* Looks for the proper validation function for a given setting and returns the validated input
*
* @access private
*
* @param string $id ID of field
* @param mixed $input Input
* @param array $setting Setting properties
*
* @return mixed $input Validated input
*
*/
private function validate_options($id, $input, $setting) {
if(method_exists($this, 'validate_field_' . $setting['type']) && !has_filter('validate_field_' . $setting['type'] . '_override')) {
// If a validation filter has been specified for the setting type, register it with add_filters
add_filter('validate_field_'.$setting['type'], array($this, 'validate_field_'.$setting['type']), 10, 2);
}
if(has_filter('validate_field_'.$id)) {
// If there's a validation function for this particular field ID
$input = apply_filters('validate_field_'.$id, $input, $setting);
} elseif(has_filter('validate_field_'.$setting['type']) || has_filter('validate_field_'.$setting['type'].'_override')) {
// If there's a validation for this field type or an override
if(has_filter('validate_field_'.$setting['type'].'_override')) {
$input = apply_filters('validate_field_'.$setting['type'].'_override', $input, $setting);
} elseif(has_filter('validate_field_'.$setting['type'])) {
$input = apply_filters('validate_field_'.$setting['type'], $input, $setting);
}
} else {
// If no validator specified, use the default validator
// @todo right now the validator just passes the input back. see what base-level validation we need
$input = $this->validate_field_default($input, $setting);
}
if(is_wp_error($input)) {
// If an input fails validation, put the error message into the errors array for display
$this->errors[$id] = $input->get_error_message();
$input = $input->get_error_data();
}
return $input;
}
/*----------------------------------------------------------------*/
/*
/* Functions to handle initialization of settings fields
/*
/*----------------------------------------------------------------*/
/**
* Checks for new settings fields and sets them to default values
*
* @access private
*
* @param $settings array
*
* @return array $settings The settings array
* @return array $options The options array
*/
private function initialize_settings($settings) {
$options = get_option($this->option_group);
$needs_update = false;
foreach($settings as $id => $setting) {
$setting = wp_parse_args( $setting, $this->default_setting );
// Set default values from global setting default template
$settings[$id] = $setting;
if($setting['type'] == 'checkbox') {
$this->checkboxes[] = $id;
}
if($setting['type'] == 'multi_select') {
$this->multi_selects[] = $id;
}
// If a custom setting template has been specified, load those values as well
if(has_filter( 'default_field_' . $setting['type'] ) ) {
$settings[$id] = wp_parse_args($settings[$id], apply_filters( 'default_field_' . $setting['type'], $setting ) );
} elseif (method_exists($this, 'default_field_' . $setting['type'])) {
$settings[$id] = wp_parse_args($settings[$id], call_user_func(array($this, 'default_field_' . $setting['type'])));
}
// Load the array of settings currently in use
if(!isset($this->fields[$setting['type']]))
$this->fields[$setting['type']] = true;
// Set the default value if no option exists
if(!isset($options[$id]) && isset($settings[$id]['std'])) {
$needs_update = true;
$options[$id] = $settings[$id]['std'];
} elseif(!isset($options[$id]) && !isset($settings[$id]['std'])) {
// If no default has been specified, set the option to an empty string (to prevent PHP notices)
$needs_update = true;
$options[$id] = '';
}
// Set defaults for subfields if any subfields are present
if(isset($setting['subfields'])) {
foreach($setting['subfields'] as $sub_id => $sub_setting) {
// Fill in missing parts of the array
$settings[$id]['subfields'][$sub_id] = wp_parse_args($sub_setting, $this->default_setting);
if(method_exists($this, 'default_field_' . $sub_setting['type'])) {
$settings[$id]['subfields'][$sub_id] = wp_parse_args($settings[$id]['subfields'][$sub_id], call_user_func(array($this, 'default_field_' . $sub_setting['type'])));
}
// Set default value if needed
if(!isset($options[$id][$sub_id]) && isset($setting['subfields'][$sub_id]['std'])) {
$options[$id][$sub_id] = $setting['subfields'][$sub_id]['std'];
} elseif(!isset($options[$id][$sub_id]) && !isset($setting['subfields'][$sub_id]['std'])) {
$options[$id][$sub_id] = '';
}
}
}
}
// If new options have been added, set their default values
if($needs_update) {
update_option($this->option_group, $options);
$this->options = $options;
wp_fusion()->settings->options = $options;
}
return $settings;
}
/*----------------------------------------------------------------*/
/*
/* Functions to handle creating menu items and registering pages
/*
/*----------------------------------------------------------------*/
/**
* Sets the top level menu slug based on the user preference
*
* @access private
*
* @param $menu
*
* @internal param array $setup
* @internal param array $subpages
*
* @return string
*/
private function parent_slug($menu) {
switch($menu) {
case 'posts':
return 'edit.php';
case 'dashboard':
return 'index.php';
case 'media':
return 'upload.php';
case 'links':
return 'link-manager.php';
case 'pages':
return 'edit.php?post_type=page';
case 'comments':
return 'edit-comments.php';
case 'theme':
return 'themes.php';
case 'plugins':
return 'plugins.php';
case 'users':
return 'users.php';
case 'tools':
return 'tools.php';
case 'settings':
return 'options-general.php';
default:
if(post_type_exists($menu)) {
return 'edit.php?post_type='.$menu;
} else {
return $menu;
}
}
}
/**
* Builds menus and submenus according to the pages and subpages specified by the user
*
* @access public
*
*/
public function add_menus() {
// Create an array to contain all pages, and add the main setup page (registered with $setup)
$pages = array(
$this->setup['slug'] => array(
'menu' => $this->setup['menu'],
'page_title' => $this->setup['page_title'],
'menu_title' => $this->setup['menu_title'],
'capability' => $this->setup['capability'],
'page_icon' => $this->setup['page_icon'],
'icon_url' => $this->setup['icon_url'],
'position' => $this->setup['position']
)
);
// If additional pages have been specified, load them into the pages array
if($this->subpages) {
foreach($this->subpages as $slug => $page) {
$pages[$slug] = wp_parse_args($page, $this->default_page);
}
}
// For each page, register it with add_submenu_page and create an admin_print_scripts action
foreach($pages as $slug => $page) {
// If page does not have a menu, create a top level menu item
if($page['menu'] == NULL) {
$id = add_menu_page(
$page['page_title'],
$page['menu_title'],
$page['capability'],
$slug,
array($this, 'show_page'),
$page['icon_url'],
$page['position']
);
} else {
$id = add_submenu_page(
$this->parent_slug($page['menu']), // parent slug
$page['page_title'], // page title
$page['menu_title'], // menu title
$page['capability'], // capability
$slug, // slug
array($this, 'show_page') // display function
);
}
//add_action( 'admin_print_scripts-'.$id, array( $this, 'scripts' ) );
add_action( 'load-' . $id, array($this, 'enqueue_scripts_action' ) );
// Add the ID back into the array so we can locate this page again later
$pages[$slug]['id'] = $id;
}
// Make the reorganized array available to the rest of the class
$this->subpages = $pages;
}
/*----------------------------------------------------------------*/
/*
/* Functions to handle rendering page wrappers and outputting settings fields
/*
/*----------------------------------------------------------------*/
/**
* Only runs on pages generated by the options framework
*/
public function enqueue_scripts_action() {
add_action( 'admin_enqueue_scripts', array( $this, 'scripts' ), 20 );
}
/**
* Enqueue scripts and styles
*/
public function scripts() {
wp_enqueue_script('bootstrap', $this->selfpath.'js/bootstrap.min.js', array('jquery'));
wp_enqueue_script('bootstrap-formhelpers', $this->selfpath.'lib/bootstrap-formhelpers/bootstrap-formhelpers.min.js', array('jquery', 'bootstrap'));
wp_enqueue_script('options-js', $this->selfpath.'js/options.min.js', array('jquery', 'select4'));
wp_enqueue_script('jquery-ui-sortable');
wp_enqueue_style('bootstrap', $this->selfpath.'css/bootstrap.min.css');
wp_enqueue_style('fontawesome', $this->selfpath.'css/font-awesome.min.css');
wp_enqueue_style('options-css', $this->selfpath.'css/options.css');
// Enqueue TinyMCE editor
if(isset($this->fields['editor'])) {
wp_print_scripts('editor');
}
// Enqueue codemirror js and css
if(isset($this->fields['code'])) {
wp_enqueue_style('at-code-css', $this->selfpath . 'lib/codemirror/codemirror.css', array(), NULL);
wp_enqueue_style('at-code-css-dark', $this->selfpath . 'lib/codemirror/twilight.css', array(), NULL);
wp_enqueue_script('at-code-lib', $this->selfpath . 'lib/codemirror/codemirror.js', array('jquery'), FALSE, TRUE);
wp_enqueue_script('at-code-lib-xml', $this->selfpath . 'lib/codemirror/xml.js', array('jquery'), FALSE, TRUE);
wp_enqueue_script('at-code-lib-javascript', $this->selfpath . 'lib/codemirror/javascript.js', array('jquery'), FALSE, TRUE);
wp_enqueue_script('at-code-lib-css', $this->selfpath . 'lib/codemirror/css.js', array('jquery'), FALSE, TRUE);
wp_enqueue_script('at-code-lib-clike', $this->selfpath . 'lib/codemirror/clike.js', array('jquery'), FALSE, TRUE);
wp_enqueue_script('at-code-lib-php', $this->selfpath . 'lib/codemirror/php.js', array('jquery'), FALSE, TRUE);
}
if(isset($this->fields['select']) || isset($this->fields['multi_select'])) {
wp_enqueue_style('select4', $this->selfpath . 'lib/select2/select4.min.css', array(), NULL);
wp_enqueue_script('select4', $this->selfpath . 'lib/select2/select4.min.js', array('jquery'), '4.0.1', TRUE);
}
if(isset($this->fields['password'])) {
wp_enqueue_script('password-strength-meter');
}
// Enqueue plupload
if(isset($this->fields['plupload'])) {
wp_enqueue_script('plupload-all');
wp_register_script('myplupload', $this->selfpath . 'lib/plupload/myplupload.js', array('jquery'));
wp_enqueue_script('myplupload');
wp_register_style('myplupload', $this->selfpath . 'lib/plupload/myplupload.css');
wp_enqueue_style('myplupload');
// Add data encoding type for file uploading.
add_action('post_edit_form_tag', array($this, 'add_enctype'));
// Make upload feature work event when custom post type doesn't support 'editor'
wp_enqueue_script('media-upload');
wp_enqueue_script('thickbox');
wp_enqueue_script('jquery-ui-core');
wp_enqueue_script('jquery-ui-sortable');
// Add filters for media upload.
add_filter('media_upload_gallery', array(&$this, 'insert_images'));
add_filter('media_upload_library', array(&$this, 'insert_images'));
add_filter('media_upload_image', array(&$this, 'insert_images'));
// Delete all attachments when delete custom post type.
add_action('wp_ajax_at_delete_file', array(&$this, 'delete_file'));
add_action('wp_ajax_at_reorder_images', array(&$this, 'reorder_images'));
// Delete file via Ajax
add_action('wp_ajax_at_delete_mupload', array($this, 'wp_ajax_delete_image'));
}
// Enqueue any custom scripts and styles
if(has_action( $this->setup['project_slug'] . '_enqueue_scripts' )) {
do_action( $this->setup['project_slug'] . '_enqueue_scripts' );
}
}
/**
* Gets the current page settings based on the screen object given by get_current_screen()
*
* @access private
*
* @param $screen object
*
*/
private function get_page_by_screen($screen) {
foreach($this->subpages as $slug => $page) {
if($page['id'] == $screen->id) {
if(isset($this->sections[$slug])) {
// If sections have been given for this specific page
$page['sections'] = $this->sections[$slug];
} else {
// If there are sections, but none for this specific page, create one section w/ the page's slug
$page['sections'][$slug] = $slug;
}
$page['slug'] = $slug;
return $page;
}
}
}
/**
*
* Page wrappers and layout handlers
*
*
*/
public function show_page() { ?>
<?php $page = $this->get_page_by_screen(get_current_screen()); ?>
<?php $page = apply_filters( $this->setup['project_slug'] . '_configure_sections', $page, $this->options); ?>
<div class="wrap">
<div class="icon32" id="icon-<?php echo $this->setup['page_icon'] ?>"></div>
<h2><?php echo $page["page_title"] ?> </h2>
<?php if($this->settings_updated) {
echo '<div id="setting-error-settings_updated" class="updated settings-error"><p><strong>Settings saved.</strong></p></div>';
}
if($this->settings_imported) {
echo '<div id="setting-error-settings_updated" class="updated settings-error"><p><strong>Settings successfully imported.</strong></p></div>';
}
if($this->reset_options)
echo '<div id="setting-error-settings_updated" class="updated settings-error"><p><strong>Settings successfully reset.</strong></p></div>';
if($this->errors) {
foreach($this->errors as $id => $error_message) {
echo '<div id="message" class="error"><p><i class="fa fa-warning"></i>'.$error_message.'</p></div>';
echo '<style type="text/css">#'.$id.'{ border: 1px solid #d00; }</style>';
}
} ?>
<form id="<?php echo $page['slug']; ?>" class="<?php if($this->options['connection_configured'] == false) echo 'setup' ?>" action="" method="post">
<?php wp_nonce_field($this->setup['project_slug'], $this->setup['project_slug'].'_nonce'); ?>
<input type="hidden" name="action" value="update">
<?php if(has_action('before_page_' . $page['id'])) {
do_action('before_page_' . $page['id']);
}
// only display tabs if there's more than one section
if(count($page['sections']) > 1) {
?>
<ul class="nav nav-tabs">
<?php $isfirst = TRUE; ?>
<?php foreach($page['sections'] as $section_slug => $section) { ?>
<li id="tab-<?php echo $section_slug ?>" <?php if($isfirst) {
echo "class='active'";
} ?>><a href="#<?php echo $section_slug ?>" data-toggle="tab"><?php echo $section ?></a></li>
<?php $isfirst = FALSE; ?>
<?php } ?>
</ul>
<?php } ?>
<div class="tab-content">
<?php $isfirst = TRUE; ?>
<?php foreach($page['sections'] as $section_slug => $section) { ?>
<div class="tab-pane <?php if($isfirst) {
echo 'active';
} ?>" id="<?php echo $section_slug ?>">
<?php if(count($page['sections']) > 1) { ?>
<h3><?php echo $section ?></h3>
<?php } ?>
<?php // Check to see if a user-created override for the display function is available
if(has_action('show_section_'.$section_slug)) {
do_action('show_section_'.$section_slug, $section_slug, $this->settings);
} else {
$this->show_section($section_slug);
} ?>
</div>
<?php $isfirst = FALSE; ?>
<?php } ?>
</div>
<p class="submit"><input name="Submit" type="submit" class="button-primary" value="Save Changes" /></p>
</form>
<?php
}
/**
* Renders the individual settings fields within their appropriate sections
*
* @access private
*
* @param $section string
*
*/
private function show_section($section) {
?>
<table class="form-table">
<?php foreach($this->settings as $id => $setting) {
if($setting["section"] == $section) {
// For each part of the field (begin, content, and end) check to see if a user-specified override is available in the child class
/**
* "field_begin" override
*/
if(has_action('show_field_'.$id."_begin")) {
// If there's a "field begin" override for this specific field
do_action('show_field_'.$id."_begin", $id, $setting);
} elseif(has_action('show_field_'.$setting['type']."_begin")) {
// If there's a "field begin" override for this specific field type
do_action('show_field_'.$setting['type'].'_begin', $id, $setting);
} elseif(has_action('show_field_begin')) {
// If there's a "field begin" override for all fields
do_action('show_field_begin', $id, $setting);
} elseif(method_exists($this, 'show_field_'.$setting['type']."_begin")) {
// If a custom override has been supplied in this file
call_user_func(array($this, "show_field_".$setting['type']."_begin"), $id, $setting);
} else {
// If no override, use the default
$this->show_field_begin($id, $setting);
}
/**
* "show_field" override
*/
if(has_action('show_field_'.$id)) {
// If there's a "show field" override for this specific field
do_action('show_field_'.$id, $id, $setting);
} elseif(has_action('show_field_'.$setting['type'])) {
do_action('show_field_'.$setting['type'], $id, $setting);
} else {
// If no custom override, use the default
call_user_func(array($this, "show_field_".$setting['type']), $id, $setting);
}
/**
* "field_end" override
*/
if(has_action('show_field_'.$id.'_end')) {
// If there's a "field end" override for this specific field
do_action('show_field_'.$id."_end", $id, $setting);
} elseif(has_action('show_field_'.$setting['type']."_end")) {
// If there's a "field begin" override for this specific field type
do_action('show_field_'.$setting['type'].'_end', $id, $setting);
} elseif(has_action('show_field_end')) {
// If there's a "field begin" override for all fields
do_action('show_field_end', $id, $setting);
} elseif(method_exists($this, 'show_field_'.$setting['type']."_end")) {
// If a custom override has been supplied in this file
call_user_func(array($this, "show_field_".$setting['type']."_end"), $id, $setting);
} else {
// If no override, use the default
$this->show_field_end($id, $setting);
}
}
} ?>
</table>
<?php
}
/*----------------------------------------------------------------
*
* Functions to handle display and validation of individual fields
*
*----------------------------------------------------------------
/**
*
* Default field handlers
*
*/
/**
* Begin field.
*
* @param string $id
* @param array $field
*
* @since 0.1
* @access private
*/
private function show_field_begin($id, $field) {
echo '<tr valign="top"' . ($field['disabled'] ? ' class="disabled"' : '') . '>';
echo '<th scope="row"><label for="'.$id.'">'.$field['title'].'</label></th>';
echo '<td>';
}
/**
* End field.
*
* @param string $id
* @param array $field
*
*
* @since 0.1
* @access private
*/
private function show_field_end($id, $field) {
if($field['desc'] != '') {
echo '<span class="description">'.$field['desc'].'</span>';
}
echo '</td>';
echo '</tr>';
}
/**
* Validate field
*
* @param mixed $input
* @param $setting
*
* @return mixed
*/
private function validate_field_default($input, $setting) {
return $input;
}
/**
*
* Wrapper for fields with subfields
*
*/
/**
* Show subfields field begin
*
* @param string $id
* @param array $field
*
*/
private function show_field_subfields_begin($id, $field) {
echo '<tr valign="top">';
echo '<th scope="row"><label for="'.$id.'">'.$field['title'].'</label></th>';
echo '<td class="subfields">';
}
/**
* Show subfields field
*
* @param string $id
* @param array $field
*
*/
private function show_field_subfields($id, $field) {
foreach($field['subfields'] as $subfield_id => $subfield) {
if(has_action('show_field_'.$subfield['type'])) {
do_action('show_field_'.$subfield['type'], $id, $subfield);
} else {
// If no custom override, use the default
call_user_func(array($this, "show_field_".$subfield['type']), $id, $subfield, $subfield_id);
}
}
}
/**
*
* Heading field
*
*/
/**
* Show Heading field begin
*
* @param string $id
* @param array $field
*
*/
private function show_field_heading_begin($id, $field) {
echo '</table>';
}
/**
* Show Heading field.
*
* @param string $id
* @param array $field
*
*/
private function show_field_heading($id, $field) {
echo '<h4>'.$field['title'].'</h4>';
if($field['desc'] != '') {
echo '<p>'.$field['desc'].'</p>';
}
}
/**
* Show Heading field end.
*
* @param string $id
* @param array $field
*
*/
private function show_field_heading_end($id, $field) {
echo '<table class="form-table">';
}
/**
*
* Paragraph field
*
*/
/**
* Show Paragraph field begin
*
* @param string $id
* @param array $field
*
*/
private function show_field_paragraph_begin($id, $field) {
// Dont output tr
}
/**
* Show Paragraph field.
*
* @param string $id
* @param array $field
*
*/
private function show_field_paragraph($id, $field) {
if($field['title']) {
echo '<h3 class="title">'.$field['title'].'</h3>';
}
echo '<p>'.$field['desc'].'</p>';
}
/**
* Show Paragraph field end.
*
* @param string $id
* @param array $field
*
*/
private function show_field_paragraph_end($id, $field) {
// don't output /tr
}
/**
* Defaults for text field
*
* @return array $args
*
*/
private function default_field_text() {
$args = array(
'format' => NULL
);
return $args;
}
/**
* Show field Text.
*
* @param $id
* @param string $field
*
* @param null $subfield_id
*
* @since 0.1
* @access private
*/
public function show_field_text($id, $field, $subfield_id = NULL) {
if($field['format'] == 'phone') {
echo '<input id="'.($subfield_id ? $subfield_id : $id).'" class="form-control bfh-phone '.$field['class'].'" data-format="(ddd) ddd-dddd" type="text" id="'.$id.'" name="'.$this->option_group.'['.$id.']'.($subfield_id ? '['.$subfield_id.']' : '').'" placeholder="'.$field['std'].'" value="'.esc_attr($subfield_id ? $this->options[$id][$subfield_id] : $this->options[$id]).'" '.($field['disabled'] ? 'disabled="true"' : '').'>';
} else {
echo '<input id="'.($subfield_id ? $subfield_id : $id).'" class="form-control '.$field['class'].'" type="text" name="'.$this->option_group.'['.$id.']'.($subfield_id ? '['.$subfield_id.']' : '').'" placeholder="'.$field['std'].'" value="'.esc_attr($subfield_id ? $this->options[$id][$subfield_id] : $this->options[$id]).'" '.($field['disabled'] ? 'disabled="true"' : '').'>';
}
}
/**
* Validate Text field.
*
* @param string $input
*
* @param $setting
*
* @return string $input
*/
public function validate_field_text($input, $setting) {
if($setting['format'] == 'phone') {
// Remove all non-number characters
$input = preg_replace("/[^0-9]/", '', $input);
//if we have 10 digits left, it's probably valid.
if(strlen($input) == 10) {
return $input;
} else {
return new WP_Error('error', __("Invalid phone number."), $input);
}
} elseif($setting['format'] == 'zip') {
if(preg_match('/^\d{5}$/', $input)) {
return $input;
} else {
return new WP_Error('error', __("Invalid ZIP code."), $input);
}
} else {
return sanitize_text_field($input);
}
}
/**
*
* Textarea field
*
*/
/**
* Defaults for textarea field
*
* @return array $args
*
*/
private function default_field_textarea() {
$args = array(
'rows' => 5,
'cols' => 39
);
return $args;
}
/**
* Show Textarea field.
*
* @param string $id
* @param array $field
*
*/
private function show_field_textarea($id, $field) {
echo '<textarea class="form-control '.$field['class'].'" id="'.$id.'" name="'.$this->option_group.'['.$id.']" placeholder="'.$field['std'].'" rows="'.$field['rows'].'" cols="'.$field['cols'].'" '.($field['disabled'] ? 'disabled="true"' : '').'>'.wp_htmledit_pre($this->options[$id]).'</textarea>';
}
/**
* Validate Textarea field.
*
* @param string $input
*
* @param $setting
*
* @return string $input
*/
public function validate_field_textarea($input, $setting) {
return esc_textarea($input);
}
/**
*
* Checkbox field
*
*/
/**
* Show Checkbox field.
*
* @param string $id
* @param array $field
*
*/
private function show_field_checkbox($id, $field) {
if(isset($field['unlock'])) {
$unlock = '';
foreach($field['unlock'] as $target) {
$unlock .= $target . ' ';
}
}
echo '<input class="checkbox '.$field['class'].'" type="checkbox" id="'.$id.'" name="'.$this->option_group.'['.$id.']" value="1" '.checked($this->options[$id], 1, FALSE).' '.($field['disabled'] ? 'disabled="true"' : '').' ' . (isset($unlock) ? 'data-unlock="' . trim($unlock) . '"' : '') . ' />';
if($field['desc'] != '') {
echo '<label for="'.$id.'">'.$field['desc'].'</label>';
}
}
/**
* Checkbox end field
*
* @param $id
* @param string $field
*
*
* @access private
*/
private function show_field_checkbox_end($id, $field) {
echo '</td>';
echo '</tr>';
}
/**
*
* Radio field
*
*/
/**
* Defaults for radio field
*
* @return array $args
*
*/
private function default_field_radio() {
$args = array(
'choices' => array()
);
return $args;
}
/**
* Show Radio field.
*
* @param string $id
* @param array $field
*
*/
private function show_field_radio($id, $field) {
$i = 0;
foreach($field['choices'] as $value => $label) {
echo '<input class="radio '.$field['class'].'" type="radio" name="'.$this->option_group.'['.$id.']" id="'.$id.$i.'" value="'.esc_attr($value).'" '.checked($this->options[$id], $value, FALSE).' '.($field['disabled'] ? 'disabled=true' : '').'><label for="'.$id.$i.'">'.$label.'</label>';
if($i < count($field['choices']) - 1) {
echo '<br />';
}
$i++;
}
}
/**
*
* Multi-select field
*
*/
/**
* Defaults for multi-select field
*
* @return array $args
*
*/
private function default_field_multi_select() {
$args = array(
'choices' => array(),
);
return $args;
}
/**
* Show Multi-select field.
*
* @param string $id
* @param array $field
* @param null $subfield_id
*/
private function show_field_multi_select($id, $field, $subfield_id = NULL) {
if(empty($this->options[$id]))
$this->options[$id] = array();
echo '<select multiple="multiple" id="'.($subfield_id ? $subfield_id : $id).'" class="select4 '.$field['class'].'" name="'.$this->option_group.'['.$id.'][]'.($subfield_id ? '['.$subfield_id.']' : '').'" ' . ($field['disabled'] ? 'disabled="true" ' : '') . ($field['placeholder'] ? 'data-placeholder="' . $field['placeholder'] .'" ' : '') . '>';
if(isset($field['placeholder']))
echo '<option></option>';
foreach($field['choices'] as $value => $label) {
echo '<option value="'.esc_attr($value).'"'.selected(true, in_array($value, $this->options[$id]), FALSE).'>'.$label.'</option>';
}
echo '</select>';
}
/**
*
* Select field
*
*/
/**
* Defaults for select field
*
* @return array $args
*
*/
private function default_field_select() {
$args = array(
'choices' => array(),
'allow_null' => false
);
return $args;
}
/**
* Show Select field.
*
* @param string $id
* @param array $field
* @param null $subfield_id
*/
private function show_field_select($id, $field, $subfield_id = NULL) {
echo '<select id="'.($subfield_id ? $subfield_id : $id).'" class="select4 '.$field['class'].'" name="'.$this->option_group.'['.$id.']'.($subfield_id ? '['.$subfield_id.']' : '').'" '.($field['disabled'] ? 'disabled="true"' : '') . ' ' . ($field['placeholder'] ? 'data-placeholder="' . $field["placeholder"] . '"' : '') . ' ' . ($field['allow_null'] == false ? 'data-allow-clear="false"' : '') . '>';
if($field['allow_null'] == true || isset($field['placeholder']))
echo '<option></option>';
foreach($field['choices'] as $value => $label) {
echo '<option value="'.esc_attr($value).'"'.selected($this->options[$id], $value, FALSE).'>'.$label.'</option>';
}
echo '</select>';
}
/**
*
* Number / slider / date / time fields
*
*/
/**
* Defaults for number field
*
* @return array $args
*
*/
private function default_field_number() {
$args = array(
'min' => 0,
'max' => NULL
);
return $args;
}
/**
* Show Number field.
*
* @param string $id
* @param array $field
* @param null $subfield_id
*/
private function show_field_number($id, $field, $subfield_id = NULL) {
echo '<input id="'.($subfield_id ? $subfield_id : $id).'" type="number" class="select form-control '.$field['class'].'" name="'.$this->option_group.'['.$id.']'.($subfield_id ? '['.$subfield_id.']' : '').'" min="'.$field['min'].'" '.($field['max'] ? 'max='.$field['max'] : '').' value="'.($subfield_id ? $this->options[$id][$subfield_id] : $this->options[$id]).'" '.($field['disabled'] ? 'disabled="true"' : '').'>';
}
/**
* Validate number field
*
* @param mixed $input
*
* @param $setting
*
* @return mixed|\WP_Error
*/
public function validate_field_number($input, $setting) {
if($input < $setting['min']) {
return new WP_Error('error', __("Number must be greater than or equal to ".$setting['min']."."), $input);
} elseif($input > $setting['max'] && $setting['max'] != NULL) {
return new WP_Error('error', __("Number must be less than or equal to ".$setting['max']."."), $input);
} else {
return $input;
}
}
/**
* Defaults for slider field
*
* @return array $args
*
*/
private function default_field_slider() {
$args = array(
'min' => 0,
'max' => 100
);
return $args;
}
/**
* Show Slider field
*
* @param string $id
* @param array $field
* @param null $subfield_id
*/
private function show_field_slider($id, $field, $subfield_id = NULL) {
echo '<div id="'.($subfield_id ? $subfield_id : $id).'" class="bfh-slider '.$field['class'].'" data-name="'.$this->option_group.'['.$id.']'.($subfield_id ? '['.$subfield_id.']' : '').'" data-min="'.$field['min'].'" '.($field['max'] ? 'data-max='.$field['max'] : '').' data-value="'.($subfield_id ? $this->options[$id][$subfield_id] : $this->options[$id]).'" '.($field['disabled'] ? 'disabled="true"' : '').'></div>';
}
/**
* Defaults for date field
*
* @return array $args
*
*/
private function default_field_date() {
$args = array(
'date' => 'today',
'format' => 'm/d/y',
'min' => NULL,
'max' => NULL
);
return $args;
}
/**
* Show Date field.
*
* @param string $id
* @param array $field
* @param null $subfield_id
*/
private function show_field_date($id, $field, $subfield_id = NULL) {
echo '<div id="'.($subfield_id ? $subfield_id : $id).'" class="bfh-datepicker '.$field['class'].'" data-name="'.$this->option_group.'['.$id.']'.($subfield_id ? '['.$subfield_id.']' : '').'" data-format="'.$field['format'].'" data-date="'.($subfield_id ? $this->options[$id][$subfield_id] : $this->options[$id]).'" data-min="'.$field['min'].'" data-max="'.$field['max'].'" '.($field['disabled'] ? 'disabled="true"' : '').'></div>';
}
/**
* Defaults for time field
*
* @return array $args
*
*/
private function default_field_time() {
$args = array(
'time' => 'now'
);
return $args;
}
/**
* Show Time field.
*
* @param string $id
* @param array $field
* @param null $subfield_id
*/
private function show_field_time($id, $field, $subfield_id = NULL) {
echo '<div id="'.($subfield_id ? $subfield_id : $id).'" class="bfh-timepicker '.$field['class'].'" data-name="'.$this->option_group.'['.$id.']'.($subfield_id ? '['.$subfield_id.']' : '').'" data-time="'.($subfield_id ? $this->options[$id][$subfield_id] : $this->options[$id]).'" '.($field['disabled'] ? 'disabled="true"' : '').'></div>';
}
/**
*
* Hidden field
*
*/
/**
* Hidden field begin
*
* @param $id
* @param string $field
*
* @access private
*/
private function show_field_hidden_begin($id, $field) {
}
/**
* Show Hidden field.
*
* @param string $id
* @param array $field
*
*/
private function show_field_hidden($id, $field) {
echo '<input id="' . $id . '" type="hidden" name="'.$this->option_group.'['.$id.']" value="'.$this->options[$id].'">';
}
/**
* Hidden field end
*
* @param $id
* @param string $field
*
* @access private
*/
private function show_field_hidden_end($id, $field) {
}
/**
*
* Password field
*
*/
/**
* Show password field.
*
* @param string $id
* @param array $field
*
*/
private function show_field_password($id, $field) {
echo '<form class="form-horizontal '.$field['class'].'">';
echo '<div class="form-group">';
echo '<input type="password" class="form-control" name="'.$this->option_group.'['.$id.']" value="'.$this->options[$id].'" '.($field['disabled'] ? 'disabled="true"' : '').'/>';
echo '</div>';
echo '<input type="password" class="form-control retyped" name="'.$this->option_group.'['.$id.']" value="'.$this->options[$id].'" '.($field['disabled'] ? 'disabled="true"' : '').' />';
echo '<span id="password-strength">Strength Indicator</span>';
echo '</form>';
}
/**
*
* Code editor field
*
*/
/**
* Defaults for code editor field
*
* @return array $args
*
*/
private function default_field_code() {
$args = array(
'theme' => 'default',
'lang' => 'php'
);
return $args;
}
/**
* Show code editor field
*
* @param string $id
* @param array $field
*
*/
private function show_field_code($id, $field) {
echo '<textarea id="'.$id.'" class="code_text '.$field['class'].'" name="'.$this->option_group.'['.$id.']" data-lang="'.$field['lang'].'" data-theme="'.$field['theme'].'">'.(!empty($this->options[$id]) ? stripslashes($this->options[$id]) : '').'</textarea>';
}
/**
*
* Font picker fields
*
*/
/**
* Defaults for font size field
*
* @return array $args
*
*/
private function default_field_font_size() {
$args = array(
'min' => 12,
'max' => 72
);
return $args;
}
/**
* Show font size field
*
* @param string $id
* @param array $field
* @param null $subfield_id
*/
private function show_field_font_size($id, $field, $subfield_id = NULL) {
echo '<div id="'.($subfield_id ? $subfield_id : $id).'" class="bfh-selectbox bfh-fontsizes '.$field['class'].'"" data-name="'.$this->option_group.'['.$id.']'.($subfield_id ? '['.$subfield_id.']' : '').'" data-fontsize="'.($subfield_id ? $this->options[$id][$subfield_id] : $this->options[$id]).'" data-blank="false"></div>';
}
/**
* Show font face field
*
* @param string $id
* @param array $field
* @param null $subfield_id
*/
private function show_field_font_face($id, $field, $subfield_id = NULL) {
echo '<div id="'.($subfield_id ? $subfield_id : $id).'" class="bfh-selectbox bfh-googlefonts '.$field['class'].'"" data-name="'.$this->option_group.'['.$id.']'.($subfield_id ? '['.$subfield_id.']' : '').'" data-font="'.($subfield_id ? $this->options[$id][$subfield_id] : $this->options[$id]).'"></div>';
}
/**
* Show font weight field
*
* @param string $id
* @param array $field
* @param null $subfield_id
*/
private function show_field_font_weight($id, $field, $subfield_id = NULL) {
echo '<div id="'.($subfield_id ? $subfield_id : $id).'" class="bfh-selectbox '.$field['class'].'"" data-name="'.$this->option_group.'['.$id.']'.($subfield_id ? '['.$subfield_id.']' : '').'" data-value="'.($subfield_id ? $this->options[$id][$subfield_id] : $this->options[$id]).'">
<div data-value="100">100</div>
<div data-value="200">200</div>
<div data-value="300">300</div>
<div data-value="400">400</div>
<div data-value="500">500</div>
<div data-value="600">600</div>
<div data-value="700">700</div>
<div data-value="800">800</div>
<div data-value="900">900</div>
</div>';
}
/**
* Show font style field
*
* @param string $id
* @param array $field
* @param null $subfield_id
*/
private function show_field_font_style($id, $field, $subfield_id = NULL) {
echo '<div id="'.($subfield_id ? $subfield_id : $id).'" class="bfh-selectbox '.$field['class'].'"" data-name="'.$this->option_group.'['.$id.']'.($subfield_id ? '['.$subfield_id.']' : '').'" data-value="'.($subfield_id ? $this->options[$id][$subfield_id] : $this->options[$id]).'">
<div data-value="normal">Normal</div>
<div data-value="italic">Italic</div>
</div>';
}
/**
* Show color field
*
* @param string $id
* @param array $field
* @param null $subfield_id
*/
private function show_field_color($id, $field, $subfield_id = NULL) {
echo '<div id="'.($subfield_id ? $subfield_id : $id).'" class="bfh-colorpicker '.$field['class'].'"" data-name="'.$this->option_group.'['.$id.']'.($subfield_id ? '['.$subfield_id.']' : '').'" data-color="'.($subfield_id ? $this->options[$id][$subfield_id] : $this->options[$id]).'" data-close="false"></div>';
}
/**
* Validate color field.
*
* @param string $input
*
* @param $setting
*
* @return string $input
*/
public function validate_field_color($input, $setting) {
if(preg_match('/^#[a-f0-9]{6}$/i', $input)) {
return $input;
} else {
return new WP_Error('error', __("Invalid color code."), $input);
}
}
/**
*
* Location fields
*
*/
/**
* Defaults for state field
*
* @return array $args
*
*/
private function default_field_state() {
$args = array(
'country' => 'US'
);
return $args;
}
/**
* Show state field
*
* @param $id
* @param $field
* @param null $subfield_id
*
* @internal param string $input
*
* @return string $input
*/
private function show_field_state($id, $field, $subfield_id = NULL) {
echo '<div id="'.($subfield_id ? $subfield_id : $id).'" class="bfh-selectbox bfh-states '.$field['class'].'"" data-name="'.$this->option_group.'['.$id.']'.($subfield_id ? '['.$subfield_id.']' : '').'" data-country="'.$field['country'].'" data-state="'.($subfield_id ? $this->options[$id][$subfield_id] : $this->options[$id]).'"></div>';
}
/**
* Defaults for country field
*
* @return array $args
*
*/
private function default_field_country() {
$args = array(
'country' => 'US'
);
return $args;
}
/**
* Show country field
*
* @param $id
* @param $field
* @param null $subfield_id
*
* @internal param string $input
*
* @return string $input
*/
private function show_field_country($id, $field, $subfield_id = NULL) {
echo '<div id="'.($subfield_id ? $subfield_id : $id).'" class="bfh-selectbox bfh-countries '.$field['class'].'"" data-name="'.$this->option_group.'['.$id.']'.($subfield_id ? '['.$subfield_id.']' : '').'" data-flags="true" data-country="'.($subfield_id ? $this->options[$id][$subfield_id] : $this->options[$id]).'"></div>';
}
/**
*
* File upload field and utility functions
*
*/
/**
* Add data encoding type for file uploading
*
* @since 0.1
* @access public
*/
public function add_enctype() {
echo ' enctype="multipart/form-data"';
}
/**
* Defaults for file field
*
* @return array $args
*
*/
private function default_field_file() {
$args = array(
'layout' => 'standard',
'width' => 250,
'height' => 150
);
return $args;
}
/**
* Show file field
*
* @param $id
* @param $field
*
* @internal param string $input
*
* @return string $input
*/
private function show_field_file($id, $field) {
if($field['layout'] == 'image') {
echo '<div class="fileinput fileinput-field fileinput-image '.(isset($this->options[$id]) && $this->options[$id] != "" ? 'fileinput-exists' : 'fileinput-new').'" data-provides="fileinput">
<div class="fileinput-new thumbnail" style="width: '.$field['width'].'px; height: '.$field['height'].'px;">
<img data-src="'.$this->selfpath.'js/holder.js/'.$field['width'].'x'.$field['height'].'">
</div>
<div class="fileinput-preview fileinput-exists thumbnail" style="max-width: '.$field['width'].'px; max-height: '.$field['height'].'px;">
'.(isset($this->options[$id]) && $this->options[$id] != "" ? '<img src="'.$this->options[$id].'">' : '').'
</div>
<div>
<span class="btn btn-default btn-file"><span class="fileinput-new">Select image</span><span class="fileinput-exists">Change</span><input class="fileinput-input" type="text" value="'.(!empty($this->options[$id]) ? $this->options[$id] : '') .'" name="'.$this->option_group.'['.$id.']"></span>
<a href="#" class="btn btn-default fileinput-exists" data-dismiss="fileinput">Remove</a>
</div>
</div>';
} else {
echo '<div id="'.$id.'" class="fileinput fileinput-field fileinput-file '.(isset($this->options[$id]) && $this->options[$id] != "" ? 'fileinput-exists' : 'fileinput-new').'" data-provides="fileinput">
<div class="input-group">
<div class="form-control uneditable-input span3" data-trigger="fileinput"><i class="fa fa-file-o fileinput-exists"></i> <span class="fileinput-filename">'.basename($this->options[$id]).'</span></div>
<span class="input-group-addon btn btn-default btn-file"><span class="fileinput-new">Select file</span><span class="fileinput-exists">Change</span><input class="fileinput-input" type="text" value="'.$this->options[$id].'" name="'.$this->option_group.'['.$id.']"></span>
<a href="#" class="input-group-addon btn btn-default fileinput-exists" data-dismiss="fileinput">Remove</a>
</div>
</div>';
}
}
/**
*
* WYSIWYG editor field
*
*/
/**
* Defaults for editor field
*
* @return array $args
*
*/
private function default_field_editor() {
$args = array(
'media_buttons' => TRUE,
'wpautop' => TRUE,
'textarea_rows' => get_option('default_post_edit_rows', 10),
'editor_css' => ''
);
return $args;
}
/**
* Show editor field
*
* @param string $id
* @param array $field
*
*/
private function show_field_editor($id, $field) {
$settings = array(
'editor_class' => 'at-wysiwyg '.$field['class'],
'textarea_name' => $this->option_group.'['.$id.']',
'media_buttons' => $field['media_buttons'],
'wpautop' => $field['wpautop'],
'textarea_rows' => $field['textarea_rows'],
'editor_css' => $field['editor_css']
);
wp_editor(stripslashes(stripslashes(html_entity_decode($this->options[$id]))), $id, $settings);
}
/**
*
* Import, export, and utility functions
*
*/
/**
* Show export field
*
* @param string $id
* @param array $field
*
*/
private function show_field_export($id, $field) {
$nonce = wp_create_nonce('export-options');
echo '<a id="'.$id.'" class="button button-default" href="'.admin_url('admin-post.php?action=export&option_group='.$this->option_group.'&_wpnonce='.$nonce).'" >Download Export</a>';
}
/**
* Prepare and serve export settings
*
* @return string $content
*
*/
public function download_export() {
if($this->option_group == $_REQUEST['option_group']) {
if(!wp_verify_nonce($_REQUEST['_wpnonce'], 'export-options')) {
wp_die('Security check');
}
//here you get the options to export and set it as content, ex:
$content = base64_encode(serialize($this->options));
$file_name = 'exported_settings_'.date('m-d-y').'.txt';
header('HTTP/1.1 200 OK');
if(!current_user_can('edit_theme_options')) {
wp_die('<p>'.__('You do not have sufficient permissions to edit templates for this site.').'</p>');
}
if($content === NULL || $file_name === NULL) {
wp_die('<p>'.__('Error Downloading file.').'</p>');
}
$fsize = strlen($content);
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header('Content-Description: File Transfer');
header("Content-Disposition: attachment; filename=".$file_name);
header("Content-Length: ".$fsize);
header("Expires: 0");
header("Pragma: public");
echo $content;
exit;
}
}
/**
* Show import field
*
* @param string $id
* @param array $field
*
*/
private function show_field_import($id, $field) {
echo '<textarea class="form-control '.$field['class'].'" id="'.$id.'" name="'.$this->option_group.'['.$id.']" placeholder="'.$field['std'].'" rows="3" cols="39" '.($field['disabled'] ? 'disabled="true"' : '').'>'.wp_htmledit_pre($this->options[$id]).'</textarea>';
}
/**
* Validate import field.
*
* @param string $input
*
* @param $setting
*
* @return string $input
*/
public function validate_field_import($input, $setting) {
$import_code = unserialize(base64_decode($input));
if(is_array($import_code)) {
update_option($this->option_group, $import_code);
$this->options = $import_code;
$this->settings_imported = TRUE;
return TRUE;
} else {
return new WP_Error('error', __("Error importing settings. Check your import file and try again."));
}
}
/**
*
* Reset options field
*
*/
/**
* Show Reset field.
*
* @param string $id
* @param array $field
*
*/
private function show_field_reset($id, $field) {
echo '<input class="checkbox warning '.$field['class'].'" type="checkbox" id="'.$id.'" name="'.$this->option_group.'['.$id.']" value="1" '.checked($this->options[$id], 1, FALSE).' />';
if($field['desc'] != '') {
echo '<label for="'.$id.'">'.$field['desc'].'</label>';
}
}
/**
* Reset field end
*
* @param string $id
* @param array $field
*
* @access private
*/
private function show_field_reset_end($id, $field) {
echo '</td>';
echo '</tr>';
}
/**
* Validates input field
*
* @param bool $input
*
* @param $setting
*
* @return bool $input
*/
public function validate_field_reset($input, $setting) {
if(isset($input)) {
$this->reset_options = TRUE;
}
return $input;
}
}