-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathappify_controlpanel.php
More file actions
1717 lines (1248 loc) · 58.4 KB
/
appify_controlpanel.php
File metadata and controls
1717 lines (1248 loc) · 58.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
<?php
$themename = "AppifyWP";
$shortname = "apfy";
$options = array (
array( "type" => "open"),
array( "name" => "App Icon",
"desc" => "URL to your app icon. Resize it to <b>exactly 80x80 pixels</b> before uploading for best results.",
"id" => $shortname."_app_icon",
"std" => "",
"type" => "appicon"),
array( "name" => "App Name",
"desc" => "What is the name of your app?",
"id" => $shortname."_app_name",
"std" => "",
"type" => "text"),
array( "name" => "App Logo",
"desc" => "If you have a logo for your app, you can provide the url to it here. This will replace the main app name text at the top of your site with this logo.",
"id" => $shortname."_app_logo",
"std" => "",
"type" => "applogo"),
array( "name" => "App Tagline",
"desc" => "What is the tagline for your app?",
"id" => $shortname."_app_tagline",
"std" => "",
"type" => "text"),
array( "id" => "Platforms",
"desc" => "Select the platforms that your app supports below.",
"type" => "platformstart"),
// iphone template
array( "name" => "iPhone",
"desc" => "",
"id" => $shortname."_iphone",
"type" => "templateOption"),
array( "name" => "iPhone Orientation",
"desc" => "",
"id" => $shortname."_iphoneOrientation",
"options" => array("Portrait", "Landscape"),
"type" => "orientation",
"std" => "Portrait"),
array( "id" => "iphone-options",
"type" => "platformOptionsStart"),
array( "name" => "Default Template?",
"desc" => "Make the iPhone App template visible by default when someone visits my site",
"id" => $shortname."_iphone_isdefault",
"type" => "defaultcheckbox",
"std" => ""),
array( "name" => "iPhone App Description",
"desc" => "",
"id" => $shortname."_iphone_app_description",
"type" => "textarea",
"std" => ""),
array( "name" => "iPhone App Store URL",
"desc" => "Enter the URL of your iPhone app in the app store. This will link your visitors to buy your app. (include http://)",
"id" => $shortname."_iphone_appURL",
"type" => "text",
"std" => ""),
array( "name" => "Feature Type",
"desc" => "Select how you would like to feature your app.",
"id" => $shortname."_iphoneFeatureType",
"options" => array("Slideshow", "Video"),
"type" => "featureType",
"std" => "Slideshow"),
array( "name" => "iPhone",
"desc" => "iPhone5 screenshots are resized to fit within 214px x 379px. iPhone4 and below screenshots are letterboxed within the phone.",
"type" => "SlideshowStart"),
array( "name" => "iPhone Slideshow Screenshot 1",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_iphone_appImg1",
"type" => "slideshow",
"std" => ""),
array( "name" => "iPhone Slideshow Screenshot 2",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_iphone_appImg2",
"type" => "slideshow",
"std" => ""),
array( "name" => "iPhone Slideshow Screenshot 3",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_iphone_appImg3",
"type" => "slideshow",
"std" => ""),
array( "name" => "iPhone Slideshow Screenshot 4",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_iphone_appImg4",
"type" => "slideshow",
"std" => ""),
array( "name" => "iPhone Slideshow Screenshot 5",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_iphone_appImg5",
"type" => "slideshow",
"std" => ""),
array( "name" => "iPhone Slideshow Screenshot 6",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_iphone_appImg6",
"type" => "slideshow",
"std" => ""),
array( "name" => "iPhone Slideshow Screenshot 7",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_iphone_appImg7",
"type" => "slideshow",
"std" => ""),
array( "name" => "iPhone Slideshow Screenshot 8",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_iphone_appImg8",
"type" => "slideshow",
"std" => ""),
array( "name" => "Auto-play slideshow",
"desc" => "If checked, AppifyWP will auto-play and rotate through your app screenshots",
"id" => $shortname."_iphone_autoplay",
"type" => "slideshowautoplay",
"std" => ""),
array( "type" => "SlideshowEnd",
"id" => "SlideshowEnd"),
array( "name" => "Video ID",
"desc" => "Enter your YouTube or Vimeo video ID",
"id" => $shortname."_iphone_videoID",
"type" => "videoID",
"std" => ""),
array( "type" => "platformOptionsEnd",
"id" => "platformOptionsEnd"),
// ipad template
array( "name" => "iPad",
"desc" => "",
"id" => $shortname."_ipad",
"type" => "templateOption"),
array( "name" => "iPad Orientation",
"desc" => "",
"id" => $shortname."_ipadOrientation",
"options" => array("Portrait", "Landscape"),
"type" => "orientation",
"std" => "Landscape"),
array( "id" => "ipad-options",
"type" => "platformOptionsStart"),
array( "name" => "Default Template?",
"desc" => "Make the iPad App template visible by default when someone visits my site",
"id" => $shortname."_ipad_isdefault",
"type" => "defaultcheckbox",
"std" => ""),
array( "name" => "iPad App Description",
"desc" => "",
"id" => $shortname."_ipad_app_description",
"type" => "textarea",
"std" => ""),
array( "name" => "iPad App Store URL",
"desc" => "Enter the URL of your iPad app in the app store. This will link your visitors to buy your app. (include http://)",
"id" => $shortname."_ipad_appURL",
"type" => "text",
"std" => ""),
array( "name" => "iPad Feature Type",
"desc" => "Select how you would like to feature your iPad app.",
"id" => $shortname."_ipadFeatureType",
"options" => array("Slideshow", "Video"),
"type" => "featureType",
"std" => "Slideshow"),
array( "name" => "iPad",
"desc" => "iPad screenshots are resized to 402px x 301px. To maintain proper aspect ratio, include the status bar if it is in your screenshot.",
"type" => "SlideshowStart"),
array( "name" => "iPad Slideshow Screenshot 1",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_ipad_appImg1",
"type" => "slideshow",
"std" => ""),
array( "name" => "iPad Slideshow Screenshot 2",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_ipad_appImg2",
"type" => "slideshow",
"std" => ""),
array( "name" => "iPad Slideshow Screenshot 3",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_ipad_appImg3",
"type" => "slideshow",
"std" => ""),
array( "name" => "iPad Slideshow Screenshot 4",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_ipad_appImg4",
"type" => "slideshow",
"std" => ""),
array( "name" => "iPad Slideshow Screenshot 5",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_ipad_appImg5",
"type" => "slideshow",
"std" => ""),
array( "name" => "iPad Slideshow Screenshot 6",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_ipad_appImg6",
"type" => "slideshow",
"std" => ""),
array( "name" => "iPad Slideshow Screenshot 7",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_ipad_appImg7",
"type" => "slideshow",
"std" => ""),
array( "name" => "iPad Slideshow Screenshot 8",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_ipad_appImg8",
"type" => "slideshow",
"std" => ""),
array( "name" => "Auto-play slideshow",
"desc" => "If checked, AppifyWP will auto-play and rotate through your app screenshots",
"id" => $shortname."_ipad_autoplay",
"type" => "slideshowautoplay",
"std" => ""),
array( "type" => "SlideshowEnd",
"id" => "SlideshowEnd"),
array( "name" => "Video ID",
"desc" => "Enter your YouTube or Vimeo video ID",
"id" => $shortname."_ipad_videoID",
"type" => "videoID",
"std" => ""),
array( "type" => "platformOptionsEnd",
"id" => "platformOptionsEnd"),
// android template
array( "name" => "Android",
"desc" => "",
"id" => $shortname."_android",
"type" => "templateOption"),
array( "name" => "Android Orientation",
"desc" => "",
"id" => $shortname."_androidOrientation",
"options" => array("Portrait", "Landscape"),
"type" => "orientation",
"std" => "Landscape"),
array( "id" => "android-options",
"type" => "platformOptionsStart"),
array( "name" => "Default Template?",
"desc" => "Make the Android App template visible by default when someone visits my site",
"id" => $shortname."_android_isdefault",
"type" => "defaultcheckbox",
"std" => ""),
array( "name" => "Android App Description",
"desc" => "",
"id" => $shortname."_android_app_description",
"type" => "textarea",
"std" => ""),
array( "name" => "Google Play URL",
"desc" => "Enter the URL of your Android app in Google Play or provide a direct download. This will link your visitors to buy/download your app. (include http://)",
"id" => $shortname."_android_appURL",
"type" => "text",
"std" => ""),
array( "name" => "Google Play Download QR-Code",
"desc" => "Enter the URL to a QR-code image. Make your QR code exactly 135x135px. Suggested QR-code generator: <a href=\"http://qrcode.kaywa.com/\" target=\"_blank\">http://qrcode.kaywa.com</a>. Use the small setting.",
"id" => $shortname."_android_QRcode",
"type" => "qrcode",
"std" => ""),
array( "name" => "Android Feature Type",
"desc" => "Select how you would like to feature your Android app.",
"id" => $shortname."_androidFeatureType",
"options" => array("Slideshow", "Video"),
"type" => "featureType",
"std" => "Slideshow"),
array( "name" => "Android",
"desc" => "Android App screenshots are re-sized to 226px x 354px. To maintain proper aspect ratio, include the status bar if it is in your screenshot. Optimized for Nexus One.",
"type" => "SlideshowStart"),
array( "name" => "Android Slideshow Screenshot 1",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_android_appImg1",
"type" => "slideshow",
"std" => ""),
array( "name" => "Android Slideshow Screenshot 2",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_android_appImg2",
"type" => "slideshow",
"std" => ""),
array( "name" => "Android Slideshow Screenshot 3",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_android_appImg3",
"type" => "slideshow",
"std" => ""),
array( "name" => "Android Slideshow Screenshot 4",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_android_appImg4",
"type" => "slideshow",
"std" => ""),
array( "name" => "Android Slideshow Screenshot 5",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_android_appImg5",
"type" => "slideshow",
"std" => ""),
array( "name" => "Android Slideshow Screenshot 6",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_android_appImg6",
"type" => "slideshow",
"std" => ""),
array( "name" => "Android Slideshow Screenshot 7",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_android_appImg7",
"type" => "slideshow",
"std" => ""),
array( "name" => "Android Slideshow Screenshot 8",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_android_appImg8",
"type" => "slideshow",
"std" => ""),
array( "name" => "Auto-play slideshow",
"desc" => "If checked, AppifyWP will auto-play and rotate through your app screenshots",
"id" => $shortname."_android_autoplay",
"type" => "slideshowautoplay",
"std" => ""),
array( "type" => "SlideshowEnd",
"id" => "SlideshowEnd"),
array( "name" => "Video ID",
"desc" => "Enter your YouTube or Vimeo video ID",
"id" => $shortname."_android_videoID",
"type" => "videoID",
"std" => ""),
array( "type" => "platformOptionsEnd",
"id" => "platformOptionsEnd"),
// wp7 template
array( "name" => "Windows Phone",
"desc" => "",
"id" => $shortname."_wp7",
"type" => "templateOption"),
array( "name" => "WP7 Orientation",
"desc" => "",
"id" => $shortname."_wp7Orientation",
"options" => array("Portrait", "Landscape"),
"type" => "orientation",
"std" => "Landscape"),
array( "id" => "wp7-options",
"type" => "platformOptionsStart"),
array( "name" => "Default Template?",
"desc" => "Make the Windows Phone App template visible by default when someone visits my site",
"id" => $shortname."_wp7_isdefault",
"type" => "defaultcheckbox",
"std" => ""),
array( "name" => "Windows Phone App Description",
"desc" => "",
"id" => $shortname."_wp7_app_description",
"type" => "textarea",
"std" => ""),
array( "name" => "Windows Phone Download - App Store URL",
"desc" => "Enter the URL to download your Windows Phone app. This will link your visitors to buy/download your app. (include http://)",
"id" => $shortname."_wp7_appURL",
"type" => "text",
"std" => ""),
array( "name" => "WP Feature Type",
"desc" => "Select how you would like to feature your WP app.",
"id" => $shortname."_wpFeatureType",
"options" => array("Slideshow", "Video"),
"type" => "featureType",
"std" => "Slideshow"),
array( "name" => "Windows Phone",
"desc" => "Windows Phone App screenshots are re-sized to 220px x 370px for portrait or 367px x 223px for landscape.",
"id" => "SlideshowStart",
"type" => "SlideshowStart"),
array( "name" => "Windows Phone Slideshow Screenshot 1",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_wp7_appImg1",
"type" => "slideshow",
"std" => ""),
array( "name" => "Windows Phone Slideshow Screenshot 2",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_wp7_appImg2",
"type" => "slideshow",
"std" => ""),
array( "name" => "Windows Phone Slideshow Screenshot 3",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_wp7_appImg3",
"type" => "slideshow",
"std" => ""),
array( "name" => "Windows Phone Slideshow Screenshot 4",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_wp7_appImg4",
"type" => "slideshow",
"std" => ""),
array( "name" => "Windows Phone Slideshow Screenshot 5",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_wp7_appImg5",
"type" => "slideshow",
"std" => ""),
array( "name" => "Windows Phone Slideshow Screenshot 6",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_wp7_appImg6",
"type" => "slideshow",
"std" => ""),
array( "name" => "Windows Phone Slideshow Screenshot 7",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_wp7_appImg7",
"type" => "slideshow",
"std" => ""),
array( "name" => "Windows Phone Slideshow Screenshot 8",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_wp7_appImg8",
"type" => "slideshow",
"std" => ""),
array( "name" => "Auto-play slideshow",
"desc" => "If checked, AppifyWP will auto-play and rotate through your app screenshots",
"id" => $shortname."_wp7_autoplay",
"type" => "slideshowautoplay",
"std" => ""),
array( "type" => "SlideshowEnd",
"id" => "SlideshowEnd"),
array( "name" => "Video ID",
"desc" => "Enter your YouTube or Vimeo video ID",
"id" => $shortname."_wp7_videoID",
"type" => "videoID",
"std" => ""),
array( "type" => "platformOptionsEnd",
"id" => "platformOptionsEnd"),
// Blackberry template
array( "name" => "BlackBerry",
"desc" => "",
"id" => $shortname."_blackberry",
"type" => "templateOption"),
array( "name" => "BlackBerry Orientation",
"desc" => "",
"id" => $shortname."_blackberryOrientation",
"options" => array("Portrait", "Landscape"),
"type" => "orientation",
"std" => "Landscape"),
array( "id" => "blackberry-options",
"type" => "platformOptionsStart"),
array( "name" => "Default Template?",
"desc" => "Make the Blackberry template visible by default when someone visits my site",
"id" => $shortname."_blackberry_isdefault",
"type" => "defaultcheckbox",
"std" => ""),
array( "name" => "BlackBerry App Description",
"desc" => "",
"id" => $shortname."_blackberry_app_description",
"type" => "textarea",
"std" => ""),
array( "name" => "BlackBerry Download",
"desc" => "Enter the URL to download your Blackberry app. This will link your visitors to buy/download your app. (include http://)",
"id" => $shortname."_blackberry_appURL",
"type" => "text",
"std" => ""),
array( "name" => "Blackberry Feature Type",
"desc" => "Select how you would like to feature your Blackberry app.",
"id" => $shortname."_blackberryFeatureType",
"options" => array("Slideshow", "Video"),
"type" => "featureType",
"std" => "Slideshow"),
array( "name" => "BlackBerry",
"desc" => "Blackberry app screenshots are re-sized to 225px x 300px for portrait or 300px x 225px for landscape.",
"id" => "SlideshowStart",
"type" => "SlideshowStart"),
array( "name" => "Blackberry Slideshow Screenshot 1",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_blackberry_appImg1",
"type" => "slideshow",
"std" => ""),
array( "name" => "Blackberry Slideshow Screenshot 2",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_blackberry_appImg2",
"type" => "slideshow",
"std" => ""),
array( "name" => "Blackberry Slideshow Screenshot 3",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_blackberry_appImg3",
"type" => "slideshow",
"std" => ""),
array( "name" => "Blackberry Slideshow Screenshot 4",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_blackberry_appImg4",
"type" => "slideshow",
"std" => ""),
array( "name" => "Blackberry Slideshow Screenshot 5",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_blackberry_appImg5",
"type" => "slideshow",
"std" => ""),
array( "name" => "Blackberry Slideshow Screenshot 6",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_blackberry_appImg6",
"type" => "slideshow",
"std" => ""),
array( "name" => "Blackberry Slideshow Screenshot 7",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_blackberry_appImg7",
"type" => "slideshow",
"std" => ""),
array( "name" => "Blackberry Slideshow Screenshot 8",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_blackberry_appImg8",
"type" => "slideshow",
"std" => ""),
array( "name" => "Auto-play slideshow",
"desc" => "If checked, AppifyWP will auto-play and rotate through your app screenshots",
"id" => $shortname."_blackberry_autoplay",
"type" => "slideshowautoplay",
"std" => ""),
array( "type" => "SlideshowEnd",
"id" => "SlideshowEnd"),
array( "name" => "Video ID",
"desc" => "Enter your YouTube or Vimeo video ID",
"id" => $shortname."_blackberry_videoID",
"type" => "videoID",
"std" => ""),
array( "type" => "platformOptionsEnd",
"id" => "platformOptionsEnd"),
// mac app template
array( "name" => "Mac App",
"desc" => "",
"id" => $shortname."_macApp",
"type" => "templateOption"),
array( "name" => "",
"type" => "macAppThumb"),
array( "id" => "macApp-options",
"type" => "platformOptionsStart"),
array( "name" => "Default Template?",
"desc" => "Make the Mac App template visible by default when someone visits my site",
"id" => $shortname."_macapp_isdefault",
"type" => "defaultcheckbox",
"std" => ""),
array( "name" => "Mac App Description",
"desc" => "",
"id" => $shortname."_macApp_description",
"type" => "textarea",
"std" => ""),
array( "name" => "Mac App Store URL",
"desc" => "Enter the URL of your Mac App in the Mac App store. This will link your visitors to buy/download your app. (include http://)",
"id" => $shortname."_macApp_appURL",
"type" => "text",
"std" => ""),
array( "name" => "Mac App Feature Type",
"desc" => "Select how you would like to feature your Mac App.",
"id" => $shortname."_macFeatureType",
"options" => array("Slideshow", "Video"),
"type" => "featureType",
"std" => "Slideshow"),
array( "name" => "Mac App",
"desc" => "Mac App screenshots are re-sized if larger than 549px x 344px. Aspect ratio is maintained progromatically.",
"type" => "SlideshowStart"),
array( "name" => "Mac App Slideshow Screenshot 1",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_macApp_appImg1",
"type" => "slideshow",
"std" => ""),
array( "name" => "Mac App Slideshow Screenshot 2",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_macApp_appImg2",
"type" => "slideshow",
"std" => ""),
array( "name" => "Mac App Slideshow Screenshot 3",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_macApp_appImg3",
"type" => "slideshow",
"std" => ""),
array( "name" => "Mac App Slideshow Screenshot 4",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_macApp_appImg4",
"type" => "slideshow",
"std" => ""),
array( "name" => "Mac App Slideshow Screenshot 5",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_macApp_appImg5",
"type" => "slideshow",
"std" => ""),
array( "name" => "Mac App Slideshow Screenshot 6",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_macApp_appImg6",
"type" => "slideshow",
"std" => ""),
array( "name" => "Mac App Slideshow Screenshot 7",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_macApp_appImg7",
"type" => "slideshow",
"std" => ""),
array( "name" => "Mac App Slideshow Screenshot 8",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_macApp_appImg8",
"type" => "slideshow",
"std" => ""),
array( "name" => "Auto-play slideshow",
"desc" => "If checked, AppifyWP will auto-play and rotate through your app screenshots",
"id" => $shortname."_macApp_autoplay",
"type" => "slideshowautoplay",
"std" => ""),
array( "type" => "SlideshowEnd",
"id" => "SlideshowEnd"),
array( "name" => "Video ID",
"desc" => "Enter your YouTube or Vimeo video ID",
"id" => $shortname."_macApp_videoID",
"type" => "videoID",
"std" => ""),
array( "type" => "platformOptionsEnd",
"id" => "platformOptionsEnd"),
// PC template
array( "name" => "PC",
"desc" => "",
"id" => $shortname."_pc",
"type" => "templateOption"),
array( "name" => "",
"type" => "pcThumb"),
array( "id" => "pc-options",
"type" => "platformOptionsStart"),
array( "name" => "Default Template?",
"desc" => "Make the PC template visible by default when someone visits my site",
"id" => $shortname."_pc_isdefault",
"type" => "defaultcheckbox",
"std" => ""),
array( "name" => "PC Description",
"desc" => "",
"id" => $shortname."_pc_description",
"type" => "textarea",
"std" => ""),
array( "name" => "PC Download URL",
"desc" => "Enter the URL where people can download your app. This will link your visitors to buy/download your app. (include http://)",
"id" => $shortname."_pc_appURL",
"type" => "text",
"std" => ""),
array( "name" => "PC Feature Type",
"desc" => "Select how you would like to feature your PC app.",
"id" => $shortname."_pcFeatureType",
"options" => array("Slideshow", "Video"),
"type" => "featureType",
"std" => "Slideshow"),
array( "name" => "PC App",
"desc" => "PC App screenshots are re-sized if larger than 549px x 293px. Aspect ratio is maintained progromatically.",
"type" => "SlideshowStart"),
array( "name" => "PC App Slideshow Screenshot 1",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_pc_appImg1",
"type" => "slideshow",
"std" => ""),
array( "name" => "Mac App Slideshow Screenshot 2",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_pc_appImg2",
"type" => "slideshow",
"std" => ""),
array( "name" => "Mac App Slideshow Screenshot 3",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_pc_appImg3",
"type" => "slideshow",
"std" => ""),
array( "name" => "Mac App Slideshow Screenshot 4",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_pc_appImg4",
"type" => "slideshow",
"std" => ""),
array( "name" => "Mac App Slideshow Screenshot 5",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_pc_appImg5",
"type" => "slideshow",
"std" => ""),
array( "name" => "Mac App Slideshow Screenshot 6",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_pc_appImg6",
"type" => "slideshow",
"std" => ""),
array( "name" => "Mac App Slideshow Screenshot 7",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_pc_appImg7",
"type" => "slideshow",
"std" => ""),
array( "name" => "Mac App Slideshow Screenshot 8",
"desc" => "Enter the URL to a screenshot of your app. Tip: Use the Wordpress media center to upload.",
"id" => $shortname."_pc_appImg8",
"type" => "slideshow",
"std" => ""),
array( "name" => "Auto-play slideshow",
"desc" => "If checked, AppifyWP will auto-play and rotate through your app screenshots",
"id" => $shortname."_pc_autoplay",
"type" => "slideshowautoplay",
"std" => ""),
array( "type" => "SlideshowEnd",
"id" => "SlideshowEnd"),
array( "name" => "Video ID",
"desc" => "Enter your YouTube or Vimeo video ID",
"id" => $shortname."_pc_videoID",
"type" => "videoID",
"std" => ""),
array( "type" => "platformOptionsEnd",
"id" => "platformOptionsEnd"),
array( "type" => "platformsend",
"id" => "platformsend"),
array( "name" => "Facebook",
"desc" => "Paste the URL to your app's facebook fan page.",
"id" => $shortname."_facebookURL",
"type" => "text",
"std" => ""),
array( "name" => "Twitter",
"desc" => "Paste the URL to your app's twitter page.",
"id" => $shortname."_twitterURL",
"type" => "text",
"std" => ""),
array( "name" => "Google+",
"desc" => "Paste the URL to your app's Google+ page.",
"id" => $shortname."_googlePlusURL",
"type" => "text",
"std" => ""),
array( "name" => "Show RSS Icon?",
"desc" => "If you have a blog on your site, show the RSS icon so that people can easily subscribe to your posts.",
"id" => $shortname."_RSSicon",
"type" => "checkbox",
"std" => ""),
array( "name" => "Sticky Sidebar",
"desc" => "If checked, your sidebar will follow the user as they scroll/navigate your homepage. <br><b>NOTE: Make sure that your sticky sidebar is not too tall otherwise the bottom content will be hidden below the fold!</b>",
"id" => $shortname."_stickySidebar",
"type" => "checkbox",
"std" => ""),
array( "name" => "Custom Background Image",
"desc" => "You can upload a custom background image which will appear in the fixed navigation to the left. This will overwrite any background color or background texture below.",
"id" => $shortname."_backgroundImage",
"std" => "",
"type" => "backgroundImage"),
array( "name" => "Background Texture",
"desc" => "Choose a background texture to add some flavor to your site.",
"id" => $shortname."_texture",
"type" => "texture",
"options" => array("none" => "None", "wood" => "Wood","wall" => "Wall","fabric" => "Fabric"),
"std" => ""),
array( "name" => "Background Color",
"desc" => "Choose a background color for your left panel. TIP: darker shades of color tend to work better with the AppifyWP design.",
"id" => $shortname."_backgroundColor",
"type" => "backgroundcolor",
"std" => "#232323"),
array( "name" => "Header Color",
"desc" => "Choose a custom color for your site headers.",
"id" => $shortname."_headerColor",
"type" => "backgroundcolor",
"std" => "#76797C"),
array( "name" => "Link Color",
"desc" => "Choose a custom color for your site headers.",
"id" => $shortname."_linkColor",
"type" => "backgroundcolor",
"std" => "#444444"),
array( "name" => "Font Theme",
"desc" => "Choose from a list of carefully and beautifully paired header and text fonts complements of Google Fonts.",
"id" => $shortname."_fontTheme",
"type" => "fonttheme",
"options" => array("helvetica" => "Helvetica (default)", "lobsterCabin" => "Lobseter/Cabin","arvoPTsans" => "Arvo/PT Sans","ubuntuVollkorn" => "Ubuntu/Vollkorn","droid" => "Droid Serif/Droid Sans"),
"std" => "helvetica"),
array( "name" => "AppifyWP Affiliate ID",
"desc" => "Get paid to promote AppifyWP! <a href=\"http://appifywp.com/affiliate-program\">Signup for the affiliate program</a> and put your affiliate ID here. This will affiliatize the powered by AppifyWP link in your footer.",
"id" => $shortname."_affiliateID",
"type" => "text",
"std" => ""),
array( "type" => "close",
"id" => "close")
);
function mytheme_add_admin() {
global $themename, $shortname, $options;
//if ( $_GET['page'] == basename(__FILE__) ) {
if ( isset($_GET['page']) && $_GET['page'] == basename(__FILE__) ) {
if ( isset($_REQUEST['action']) && 'save' == $_REQUEST['action'] ) {
//if ( 'save' == $_REQUEST['action'] ) {
foreach ($options as $value) {
if (isset($_REQUEST[ $value['id'] ])) {
update_option( $value['id'], $_REQUEST[ $value['id'] ] );
}
}
foreach ($options as $value) {
if( isset( $_REQUEST[ $value['id'] ] ) ) { update_option( $value['id'], $_REQUEST[ $value['id'] ] ); } else { delete_option( $value['id'] );
}
}
header("Location: themes.php?page=appify_controlpanel.php&saved=true");
die;
} else if( isset($_REQUEST['action']) && 'reset' == $_REQUEST['action'] ) {
foreach ($options as $value) {
delete_option( $value['id'] ); }
header("Location: themes.php?page=appify_controlpanel.php&reset=true");
die;
}
}
add_theme_page($themename." Settings", "".$themename." Settings", 'edit_themes', basename(__FILE__), 'mytheme_admin');
}