-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
3117 lines (3064 loc) · 117 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
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
$plugins = array(
'ultimate-seo' => array(
'title' => 'Ultimate SEO',
'description' => 'An all in one plugin for all your SEO needs with great features for social sharing and Q2A customization.',
'category' => 'SEO',
'popular' => true,
'url' => 'http://qa-themes.com/plugins/q2a-ultimate-seo',
'source' => 'https://github.com/q2a-projects/Q2A-Ultimate-SEO/',
'download' => 'https://github.com/q2a-projects/Q2A-Ultimate-SEO/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Towhid',
'developer_url' => 'http://TheRational.ist/',
'author' => 'QA-Themes',
'author_url' => 'http://QA-Themes.com'
),
'ultimate-widgets' => array(
'title' => 'Ultimate Widgets',
'description' => 'A collection of over 30 Widgets with features such as filtering, cache, custom styling.',
'category' => 'Widget',
'popular' => true,
'url' => 'http://qa-themes.com/plugins/ultimate-widgets-plugin',
'source' => 'https://github.com/q2a-projects/Q2A-Ultimate-Widgets/',
'download' => 'https://github.com/q2a-projects/Q2A-Ultimate-Widgets/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Towhid',
'developer_url' => 'http://TheRational.ist/',
'author' => 'QA-Themes',
'author_url' => 'http://QA-Themes.com'
),
'open-login' => array(
'title' => 'Open Login',
'description' => 'Social Login via <a href="http://www.facebook.com/">Facebook</a>, <a href="http://www.google.com/">Google</a>, <a href="http://www.yahoo.com/">Yahoo</a>, <a href="http://www.github.com/">Github</a> and many more, plus multiple logins for a single Q2A account.',
'category' => 'SSO',
'popular' => true,
'url' => 'https://github.com/alixandru/q2a-open-login',
'source' => 'https://github.com/alixandru/q2a-open-login',
'download' => 'https://github.com/alixandru/q2a-open-login/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Alex Lixandru',
'developer_url' => 'https://github.com/alixandru/',
'author' => '',
'author_url' => ''
),
'badges' => array(
'title' => 'Badges',
'description' => 'Provides user badges which recognize users’ activities and achievements.',
'category' => 'User Engagement',
'popular' => true,
'url' => 'https://github.com/NoahY/q2a-badges',
'source' => 'https://github.com/NoahY/q2a-badges',
'download' => 'https://github.com/NoahY/q2a-badges/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'NoahY',
'author_url' => 'http://www.question2answer.org/qa/user/NoahY'
),
'widget-anywhere' => array(
'title' => 'Widget Anywhere Plugin',
'description' => 'Allows custom content to be added on any page, in a variety of locations.',
'category' => 'Widget',
'popular' => true,
'url' => 'https://github.com/svivian/q2a-widget-anywhere',
'source' => 'https://github.com/svivian/q2a-widget-anywhere',
'download' => 'https://github.com/svivian/q2a-widget-anywhere/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Scott Vivian',
'developer_url' => 'http://codelair.co.uk/',
'author' => 'PokéBase',
'author_url' => 'http://pokemondb.net/pokebase/'
),
'webmaster' => array(
'title' => 'WebMaster',
'description' => 'Gives you an insight to your Q2A site’s statistics, SEO ranks, Server performance and security configurations.',
'category' => 'Administration',
'popular' => true,
'url' => 'https://github.com/q2a-projects/Q2A-Webmaster',
'source' => 'https://github.com/q2a-projects/Q2A-Webmaster',
'download' => 'https://github.com/q2a-projects/Q2A-Webmaster/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Towhid',
'developer_url' => 'http://TheRational.ist/',
'author' => 'QA-Themes',
'author_url' => 'http://QA-Themes.com'
),
'ads-manager' => array(
'title' => 'Simple Ads Manager',
'description' => 'Allow you to add advertisements in listed spots. You can use Google adsense or any HTML ad code. Also <a href="https://github.com/arjunsuresh/q2a-simple-ads-manager">forked</a> by <a href="http://gateoverflow.in/user/Arjun">Arjun</a>. to add more options like Ads after first question hiding ads for certain user level and above etc.',
'category' => 'User Engagement',
'popular' => false,
'url' => 'https://github.com/ProThoughts/q2a-simple-ads-manager',
'source' => 'https://github.com/ProThoughts/q2a-simple-ads-manager',
'download' => 'https://github.com/ProThoughts/q2a-simple-ads-manager/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'ProThoughts',
'author_url' => 'http://prothoughts.com/'
),
'better-points' => array(
'title' => 'Better Points',
'description' => 'Extends the default Q2A point system by adding points for giving comments, receiving comment upvotes/downvotes.',
'category' => 'User Engagement',
'popular' => false,
'url' => 'https://github.com/arjunsuresh/q2a-betterpoints',
'source' => 'https://github.com/arjunsuresh/q2a-betterpoints',
'download' => 'https://github.com/arjunsuresh/q2a-betterpoints/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Arjun',
'developer_url' => 'http://gateoverflow.in/user/Arjun',
'author' => '',
'author_url' => ''
),
'top-search' => array(
'title' => 'Top Searches',
'description' => 'Adds a widget to display the top searched words. Also have an option to display top seacrhed tags if using <a href="https://github.com/arjunsuresh/tag-search">Tag Search</a> plugin.',
'category' => 'Widget',
'popular' => false,
'url' => 'https://github.com/arjunsuresh/q2a-top-search',
'source' => 'https://github.com/arjunsuresh/q2a-top-search',
'download' => 'https://github.com/arjunsuresh/q2a-top-search/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Arjun',
'developer_url' => 'http://gateoverflow.in/user/Arjun',
'author' => '',
'author_url' => ''
),
'feature' => array(
'title' => 'Feature Question',
'description' => 'Allows any question to be clicked and gets added to the featured questions list which can be seen as a tab in the question lists.',
'category' => 'User Engagement',
'popular' => false,
'url' => 'https://github.com/arjunsuresh/q2a-feature',
'source' => 'https://github.com/arjunsuresh/q2a-feature',
'download' => 'https://github.com/arjunsuresh/q2a-feature/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Arjun',
'developer_url' => 'http://gateoverflow.in/user/Arjun',
'author' => '',
'author_url' => ''
),
'ajax-chat' => array(
'title' => 'Ajax Chat(AdChat)',
'description' => 'Adds a sidebar widget and a page showing AJAX chat which is responsive and also has a log page for searching across old chats. There is a separate chat room for each category of Q2A.',
'category' => 'Integration',
'popular' => false,
'url' => 'http://www.question2answer.org/qa/52777/adchat-plugin-free',
'source' => 'https://github.com/arjunsuresh/chat',
'download' => 'https://github.com/arjunsuresh/chat/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Arjun',
'developer_url' => 'http://gateoverflow.in/user/Arjun',
'author' => '',
'author_url' => ''
),
'amazon-ses' => array(
'title' => 'Amazon SES Email',
'description' => 'Sends outgoing emails through Amazon SES (Simple Email Service) rather than SMTP.',
'category' => 'Integration',
'popular' => false,
'url' => 'https://github.com/fauguste/qa-mail-ses',
'source' => 'https://github.com/fauguste/qa-mail-ses',
'download' => 'https://github.com/fauguste/qa-mail-ses/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Frédéric AUGUSTE',
'developer_url' => '',
'author' => '',
'author_url' => ''
),
'buddypress-integration' => array(
'title' => 'BuddyPress Integration',
'description' => 'Basic integration with the <a href="http://buddypress.org/">BuddyPress</a> social networking plugin for <a href="http://wordpress.org/">WordPress</a>.',
'category' => 'Integration',
'popular' => false,
'url' => 'https://github.com/NoahY/q2a-buddypress',
'source' => 'https://github.com/NoahY/q2a-buddypress',
'download' => 'https://github.com/NoahY/q2a-buddypress/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'NoahY',
'author_url' => 'http://www.question2answer.org/qa/user/NoahY'
),
'signatures' => array(
'title' => 'User Signatures Plugin',
'description' => 'Allows users to define a signature for all of their posts.',
'category' => 'User Engagement',
'popular' => false,
'url' => 'https://github.com/NoahY/q2a-signatures',
'source' => 'https://github.com/NoahY/q2a-signatures',
'download' => 'https://github.com/NoahY/q2a-signatures/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'NoahY',
'author_url' => 'http://www.question2answer.org/qa/user/NoahY'
),
'cloudflare-user-ip' => array(
'title' => 'CloudFlare User IP',
'description' => 'Get visitors’ real IP address instead of the IP address of the <a href="http://www.cloudflare.com">CloudFlare</a> CDN.',
'category' => 'Administration',
'popular' => false,
'url' => 'https://github.com/InfinityLF/q2a-cloudflare',
'source' => 'https://github.com/InfinityLF/q2a-cloudflare',
'download' => 'https://github.com/InfinityLF/q2a-cloudflare/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'InfinityLF',
'author_url' => 'https://github.com/InfinityLF'
),
'disqus' => array(
'title' => 'Disqus Widget',
'description' => 'Allows <a href="https://disqus.com">Disqus</a> comment threads to be embedded in any page.',
'category' => 'Integration', // widget
'popular' => false,
'url' => 'https://github.com/alain75007/q2a-disqus-widget',
'source' => 'https://github.com/alain75007/q2a-disqus-widget',
'download' => 'https://github.com/alain75007/q2a-disqus-widget/archive/master.zip',
'buy' => '',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Alain Beauvois',
'developer_url' => 'http://fr.linkedin.com/in/alainbeauvois',
'author' => '',
'author_url' => ''
),
'chat-room' => array(
'title' => 'Chat Room',
'description' => 'Adds a simple chat room to a Q2A site.',
'category' => 'User Engagement',
'popular' => false,
'url' => 'https://github.com/svivian/q2a-chat-room',
'source' => 'https://github.com/svivian/q2a-chat-room',
'download' => 'https://github.com/svivian/q2a-chat-room/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Scott Vivian',
'developer_url' => 'http://codelair.co.uk/',
'author' => 'PokéBase',
'author_url' => 'http://pokemondb.net/pokebase/'
),
'tag-list' => array(
'title' => 'Tag List',
'description' => 'Displays the most popular tags in a simple list.',
'category' => 'Widget',
'popular' => false,
'url' => 'https://github.com/svivian/q2a-tag-list-widget',
'source' => 'https://github.com/svivian/q2a-tag-list-widget',
'download' => 'https://github.com/svivian/q2a-tag-list-widget/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Scott Vivian',
'developer_url' => 'http://codelair.co.uk/',
'author' => 'PokéBase',
'author_url' => 'http://pokemondb.net/pokebase/'
),
'edit-history' => array(
'title' => 'Edit History',
'description' => 'Stores all edits to posts and allows users to see what changed.',
'category' => 'Administration',
'popular' => false,
'url' => 'https://github.com/svivian/q2a-edit-history',
'source' => 'https://github.com/svivian/q2a-edit-history',
'download' => 'https://github.com/svivian/q2a-edit-history/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Scott Vivian',
'developer_url' => 'http://codelair.co.uk/',
'author' => 'PokéBase',
'author_url' => 'http://pokemondb.net/pokebase/'
),
'shortcode' => array(
'title' => 'Shortcode',
'description' => 'Allows posts to be displayed with text substitutions, including support for regular expressions.',
'category' => 'Administration',
'popular' => false,
'url' => 'https://github.com/NoahY/q2a-shortcode',
'source' => 'https://github.com/NoahY/q2a-shortcode',
'download' => 'https://github.com/NoahY/q2a-shortcode/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'NoahY',
'author_url' => 'http://www.question2answer.org/qa/user/NoahY'
),
'faq' => array(
'title' => 'FAQ Page',
'description' => 'Provides a customizable FAQs page which can include an explanation of the points system on your Q2A site.',
'category' => 'Page',
'popular' => false,
'url' => 'https://github.com/NoahY/q2a-faq',
'source' => 'https://github.com/NoahY/q2a-faq',
'download' => 'https://github.com/NoahY/q2a-faq/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'NoahY',
'author_url' => 'http://www.question2answer.org/qa/user/NoahY'
),
'smiles-for-text' => array(
'title' => 'Smilies for Text',
'description' => 'Allows smilies to be embedded in plain text or Markdown content.',
'category' => 'Editor',
'popular' => false,
'url' => 'https://github.com/NoahY/q2a-smilies',
'source' => 'https://github.com/NoahY/q2a-smilies',
'download' => 'https://github.com/NoahY/q2a-smilies/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'NoahY',
'author_url' => 'http://www.question2answer.org/qa/user/NoahY'
),
'book' => array(
'title' => 'Book Plugin',
'description' => 'Creates an HTML (or PDF) book of a site’s top questions and answers. Also <a href="https://github.com/arjunsuresh/q2a-book">forked</a> by <a href="http://gateoverflow.in/user/Arjun">Arjun</a>. which adds more question filtering options and better styling options.',
'category' => 'Administration',
'popular' => false,
'url' => 'https://github.com/NoahY/q2a-book',
'source' => 'https://github.com/NoahY/q2a-book',
'download' => 'https://github.com/NoahY/q2a-book/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'NoahY',
'author_url' => 'http://www.question2answer.org/qa/user/NoahY'
),
'category-experts' => array(
'title' => 'Category Experts',
'description' => 'Adds a widget on Category pages showing the best performing users in that category. A good way to identify Category Experts.',
'category' => 'Widget',
'popular' => false,
'url' => 'https://github.com/arjunsuresh/q2a-categoryexperts',
'source' => 'https://github.com/arjunsuresh/q2a-categoryexperts',
'download' => 'https://github.com/arjunsuresh/q2a-categoryexperts/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Arjun',
'developer_url' => 'http://gateoverflow.in/user/Arjun',
'author' => '',
'author_url' => ''
),
'topusers-per-month' => array(
'title' => 'Top Users per Month/Week',
'description' => 'Functionality wise similar to Best Users per Month plugin but has better performance and also has a widget which displays best users per week. Does not require cronjob but works via MySQL scheduler which needs to be enabled on the server.',
'category' => 'User Engagement',
'popular' => false,
'url' => 'https://github.com/arjunsuresh/q2a-topusers-per-month',
'source' => 'https://github.com/arjunsuresh/q2a-topusers-per-month',
'download' => 'https://github.com/arjunsuresh/q2a-topusers-per-month/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Arjun',
'developer_url' => 'http://gateoverflow.in/user/Arjun',
'author' => '',
'author_url' => ''
),
'open-questions' => array(
'title' => 'Open Questions',
'description' => 'Provides a page displaying all questions with no answers and which have not been closed.',
'category' => 'Page',
'popular' => false,
'url' => 'https://github.com/nakov/q2a-plugin-open-questions',
'source' => 'https://github.com/nakov/q2a-plugin-open-questions',
'download' => 'https://github.com/nakov/q2a-plugin-open-questions/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Svetlin Nakov',
'developer_url' => 'http://www.nakov.com/',
'author' => '',
'author_url' => ''
),
'syntax-highlighter' => array(
'title' => 'Syntax Highlighter',
'description' => ' Code syntax highlighting based on <a href="https://highlightjs.org/">highlight.js</a> with over 40 built-in themes.',
'category' => 'Editor',
'popular' => false,
'url' => 'https://github.com/amiyasahu/q2a-syntax-highlighter',
'source' => 'https://github.com/amiyasahu/q2a-syntax-highlighter',
'download' => 'https://github.com/amiyasahu/q2a-syntax-highlighter/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'Amiya Sahu',
'author_url' => 'http://amiyasahu.com/'
),
'syntax-highlighter' => array(
'title' => 'Sort Answers',
'description' => ' Allows answers on a question page to be sorted by oldest, newest and highest voted.',
'category' => 'Editor',
'popular' => false,
'url' => 'https://github.com/amiyasahu/q2a-sort-answers',
'source' => 'https://github.com/amiyasahu/q2a-sort-answers',
'download' => 'https://github.com/amiyasahu/q2a-sort-answers/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'Amiya Sahu',
'author_url' => 'http://amiyasahu.com/'
),
'custom-404-page' => array(
'title' => 'Custom 404 Page',
'description' => 'Allows the content of the 404 (page not found) page to be customized.',
'category' => 'Page',
'popular' => false,
'url' => 'https://github.com/amiyasahu/q2a-custom-404-page',
'source' => 'https://github.com/amiyasahu/q2a-custom-404-page',
'download' => 'https://github.com/amiyasahu/q2a-custom-404-page/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'Amiya Sahu',
'author_url' => 'http://amiyasahu.com/'
),
'poll' => array(
'title' => 'Polls Plugin',
'description' => 'Allows some questions to be created as polls.',
'category' => 'User Engagement',
'popular' => false,
'url' => 'https://github.com/NoahY/q2a-poll',
'source' => 'https://github.com/NoahY/q2a-poll',
'download' => 'https://github.com/NoahY/q2a-poll/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'NoahY',
'author_url' => 'http://www.question2answer.org/qa/user/NoahY'
),
'comment-voting' => array(
'title' => 'Comment Voting',
'description' => 'Allows comments to be voted on, similarly to questions and answers.',
'category' => 'User Engagement',
'popular' => false,
'url' => 'https://github.com/NoahY/q2a-comment-voting',
'source' => 'https://github.com/NoahY/q2a-comment-voting',
'download' => 'https://github.com/NoahY/q2a-comment-voting/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'NoahY',
'author_url' => 'http://www.question2answer.org/qa/user/NoahY'
),
'blog-post' => array(
'title' => 'Blog Post Plugin',
'description' => 'Allows registered users to maintain an online journal or blog.',
'category' => 'User Engagement',
'popular' => false,
'url' => 'https://github.com/JackSiro/Q2A-Blog-Post-Plugin',
'source' => 'https://github.com/JackSiro/Q2A-Blog-Post-Plugin',
'download' => 'https://github.com/JackSiro/Q2A-Blog-Post-Plugin/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Jackson Siro',
'developer_url' => 'https://github.com/JackSiro',
'author' => '',
'author_url' => ''
),
'network-sites' => array(
'title' => 'Network Sites',
'description' => 'Enhance Q2A\'s networking capabilities.',
'category' => 'User Engagement',
'popular' => true,
'url' => 'https://github.com/NoahY/q2a-network',
'source' => 'https://github.com/NoahY/q2a-network',
'download' => 'https://github.com/NoahY/q2a-network/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'NoahY',
'author_url' => 'http://www.question2answer.org/qa/user/NoahY'
),
'print' => array(
'title' => 'Print View Plugin',
'description' => 'Adds a simplified print view for questions.',
'category' => 'User Engagement',
'popular' => true,
'url' => 'https://github.com/NoahY/q2a-print',
'source' => 'https://github.com/NoahY/q2a-print',
'download' => 'https://github.com/NoahY/q2a-print/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'NoahY',
'author_url' => 'http://www.question2answer.org/qa/user/NoahY'
),
'wiki' => array(
'title' => 'Wiki Plugin',
'description' => 'Adds a wiki to a Q2A site.',
'category' => 'User Engagement',
'popular' => true,
'url' => 'https://github.com/NoahY/q2a-wiki',
'source' => 'https://github.com/NoahY/q2a-wiki',
'download' => 'https://github.com/NoahY/q2a-wiki/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'NoahY',
'author_url' => 'http://www.question2answer.org/qa/user/NoahY'
),
'backup' => array(
'title' => 'Database Backup/Restore',
'description' => ' An admin tool for one-click backup and restore of the Q2A instance or entire database.',
'category' => 'Administration',
'popular' => true,
'url' => 'https://github.com/KrzysztofKielce/q2a-backup',
'source' => 'https://github.com/KrzysztofKielce/q2a-backup',
'download' => 'https://github.com/KrzysztofKielce/q2a-backup/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Krzysztof Kielce',
'developer_url' => 'http://www.question2answer.org/qa/user/Krzysztof+Kielce',
'author' => '',
'author_url' => ''
),
'log-tags' => array(
'title' => 'Logarithmic Tag Cloud',
'description' => 'Provides a list of tags with logarithmic size indicating popularity.',
'category' => 'Widget',
'popular' => false,
'url' => 'https://github.com/NoahY/q2a-log-tags',
'source' => 'https://github.com/NoahY/q2a-log-tags',
'download' => 'https://github.com/NoahY/q2a-log-tags/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'NoahY',
'author_url' => 'http://www.question2answer.org/qa/user/NoahY'
),
'category-email-notifications' => array(
'title' => 'Category Email Notifications',
'description' => 'Emails new questions in a category to all users who favorited that category.',
'category' => 'Email/Notification',
'popular' => false,
'url' => 'https://github.com/dunse/qa-category-email-notifications',
'source' => 'https://github.com/dunse/qa-category-email-notifications',
'download' => 'https://github.com/dunse/qa-category-email-notifications/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Pehr Johansson',
'developer_url' => '',
'author' => '',
'author_url' => ''
),
'email-formating' => array(
'title' => 'Email Formatting',
'description' => 'Allows HTML formatting to be used in notification emails.',
'category' => 'Administration',
'popular' => false,
'url' => 'https://github.com/ruuttt/q2a-email-formating',
'source' => 'https://github.com/ruuttt/q2a-email-formating',
'download' => 'https://github.com/ruuttt/q2a-email-formating/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Ruut Brandsma',
'developer_url' => '',
'author' => 'Ecofys',
'author_url' => 'http://www.ecofys.com/'
),
'spammer-checker' => array(
'title' => 'Spammer Checker',
'description' => 'On IP address pages, checks <a href="http://www.stopforumspam.com/">stopforumspam.com</a> and <a href="http://botscout.com/">botscout.com</a> to see if the IP belong to a known spammer.',
'category' => 'Anti-Spam',
'popular' => false,
'url' => 'https://github.com/sawtoothsoftware/Q2A-Spammer-Checker',
'source' => 'https://github.com/sawtoothsoftware/Q2A-Spammer-Checker',
'download' => 'https://github.com/sawtoothsoftware/Q2A-Spammer-Checker/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Walter Williams',
'developer_url' => '',
'author' => 'Sawtooth Software',
'author_url' => 'http://www.sawtoothsoftware.com/'
),
'email-notifications' => array(
'title' => 'Email Notifications',
'description' => 'Allows users to receive notifications about new questions and answers.',
'category' => 'Email/Notification',
'popular' => false,
'url' => 'https://github.com/sawtoothsoftware/Q2A-Email-Notifications',
'source' => 'https://github.com/sawtoothsoftware/Q2A-Email-Notifications',
'download' => 'https://github.com/sawtoothsoftware/Q2A-Email-Notifications/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Walter Williams',
'developer_url' => '',
'author' => 'Sawtooth Software',
'author_url' => 'http://www.sawtoothsoftware.com/'
),
'advanced-tag-editor' => array(
'title' => 'Advanced Tag Description',
'description' => 'Improved version of "Tag Description Plugin" which enables Icons, separate tags titles and descriptions and works on ‘Tags’ page too.',
'category' => 'SEO',
'popular' => false,
'url' => 'https://github.com/q2a-projects/q2a-tag-descriptions',
'source' => 'https://github.com/q2a-projects/q2a-tag-descriptions',
'download' => 'https://github.com/q2a-projects/q2a-tag-descriptions/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Towhid',
'developer_url' => 'http://TheRational.ist/',
'author' => 'QA-Themes',
'author_url' => 'http://QA-Themes.com'
),
'user-search' => array(
'title' => 'Ajax User Search',
'description' => 'Adds a live search box at the top of the users page to search users by username.',
'category' => 'Widgets',
'popular' => false,
'url' => 'http://www.q2apro.com/plugins/usersearch',
'source' => 'https://github.com/q2apro/q2apro-ajax-usersearch',
'download' => 'https://github.com/q2apro/q2apro-ajax-usersearch/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'q2apro.com',
'author_url' => 'http://www.q2apro.com/'
),
'find-text-posts' => array(
'title' => 'Find Text in Posts',
'description' => 'Allows admins to search posts for specific text and display the creator, URL and content.',
'category' => 'Widgets',
'popular' => false,
'url' => 'http://www.q2apro.com/plugins/find-text-posts',
'source' => 'https://github.com/q2apro/q2apro-find-text-posts',
'download' => 'https://github.com/q2apro/q2apro-find-text-posts/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'q2apro.com',
'author_url' => 'http://www.q2apro.com/'
),
'change-post-owner' => array(
'title' => 'Change Post Owner',
'description' => 'Allows the author of a post to be changed, or to make it anonymous.',
'category' => 'Administration',
'popular' => false,
'url' => 'https://github.com/q2apro/q2apro-change-post-owner/',
'source' => 'https://github.com/q2apro/q2apro-change-post-owner/',
'download' => 'https://github.com/q2apro/q2apro-change-post-owner/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'q2apro.com',
'author_url' => 'http://www.q2apro.com/'
),
'google-analytics' => array(
'title' => 'Google Analytics Plugin',
'description' => 'Analyze Q2A traffic with Google Analytics, optionally excluding requests from the super admin.',
'category' => 'Administration',
'popular' => false,
'url' => 'https://github.com/kufeiko/QA-Google-Analytics-Plugin',
'source' => 'https://github.com/kufeiko/QA-Google-Analytics-Plugin',
'download' => 'https://github.com/kufeiko/QA-Google-Analytics-Plugin/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Ivan',
'developer_url' => 'http://www.question2answer.org/qa/user/Ivan+Donkov',
'author' => '',
'author_url' => ''
),
'comment-to-answer' => array(
'title' => 'Convert Comment to Answer',
'description' => 'Convert a comment to an answer, optionally move the succeeding comments.',
'category' => 'Administration',
'popular' => false,
'url' => 'https://github.com/q2apro/q2apro-comment-to-answer',
'source' => 'https://github.com/q2apro/q2apro-comment-to-answer',
'download' => 'https://github.com/q2apro/q2apro-comment-to-answer/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'q2apro.com',
'author_url' => 'http://www.q2apro.com/'
),
'on-site-notifications' => array(
'title' => 'On-Site Notifications',
'description' => 'Pop-up notifications on the page which can replace email notifications.',
'category' => 'Email/Notification',
'popular' => false,
'url' => 'http://www.q2apro.com/plugins/on-site-notifications',
'source' => 'http://www.q2apro.com/plugins/on-site-notifications',
'download' => 'http://www.q2apro.com/plugins/on-site-notifications/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'q2apro.com',
'author_url' => 'http://www.q2apro.com/'
),
'remind-users' => array(
'title' => 'Remind Users',
'description' => 'Remind users to complete their profile and upload an avatar within x hours after registration.',
'category' => 'User Engagement',
'popular' => false,
'url' => 'http://www.q2apro.com/plugins/remind-users',
'source' => 'https://github.com/q2apro/q2apro-remind-users',
'download' => 'https://github.com/q2apro/q2apro-remind-users/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'q2apro.com',
'author_url' => 'http://www.q2apro.com/'
),
'warn-on-leave' => array(
'title' => 'Warn on Leave',
'description' => 'Warns users before leaving a page with text they have entered (also support WYSIWYG editor).',
'category' => 'User Engagement',
'popular' => false,
'url' => 'https://github.com/q2apro/q2apro-warn-on-leave',
'source' => 'https://github.com/q2apro/q2apro-warn-on-leave',
'download' => 'https://github.com/q2apro/q2apro-warn-on-leave/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'q2apro.com',
'author_url' => 'http://www.q2apro.com/'
),
'popular-questions' => array(
'title' => 'Popular Questions',
'description' => 'Shows a list of the most viewed questions.',
'category' => 'Widgets',
'popular' => false,
'url' => 'http://www.q2apro.com/plugins/popular-questions',
'source' => 'http://www.q2apro.com/plugins/popular-questions',
'download' => 'http://www.q2apro.com/plugins/popular-questions/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'q2apro.com',
'author_url' => 'http://www.q2apro.com/'
),
'most-active-users' => array(
'title' => 'Most Active Users',
'description' => 'Shows a list of users who were most active in the past week or month.',
'category' => 'Widgets',
'popular' => false,
'url' => 'https://github.com/q2apro/q2apro-most-active-users',
'source' => 'https://github.com/q2apro/q2apro-most-active-users',
'download' => 'https://github.com/q2apro/q2apro-most-active-users/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'q2apro.com',
'author_url' => 'http://www.q2apro.com/'
),
'best-users-per-month' => array(
'title' => 'Best Users per Month',
'description' => 'Displays the users with the most points each month (for large sites there is a premium plugin which does not have performance issue). Also <a href="https://github.com/ElephantsGroup/q2a-best-users-per-month">forked</a> by <a href="https://github.com/ElephantsGroup">Jalal Jaberi</a> which supports Jalali calendar.',
'category' => 'Widgets',
'popular' => false,
'url' => 'https://github.com/q2apro/q2apro-best-users-per-month-free',
'source' => 'https://github.com/q2apro/q2apro-best-users-per-month-free',
'download' => 'https://github.com/q2apro/q2apro-best-users-per-month-free/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'q2apro.com',
'author_url' => 'http://www.q2apro.com/'
),
'greeklish-urls' => array(
'title' => 'Greeklish URLs',
'description' => 'Converts Greek characters in question URLs into Latin equivalents.',
'category' => 'Administration',
'popular' => false,
'url' => 'https://github.com/stefkiourk/Question2Answer-greeklish-URLs',
'source' => 'https://github.com/stefkiourk/Question2Answer-greeklish-URLs',
'download' => 'https://github.com/stefkiourk/Question2Answer-greeklish-URLs/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Kiourkoulis Stefanos',
'developer_url' => 'http://aeternus.gr/',
'author' => '',
'author_url' => ''
),
'ajax-page-loader' => array(
'title' => 'Ajax Page Loader',
'description' => 'Loads page content without refreshing the whole page using Ajax Technology.',
'category' => 'User Engagement',
'popular' => false,
'url' => 'https://github.com/q2a-projects/Ajax-Page-Loader',
'source' => 'https://github.com/q2a-projects/Ajax-Page-Loader',
'download' => 'https://github.com/q2a-projects/Ajax-Page-Loader/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Towhid',
'developer_url' => 'http://TheRational.ist/',
'author' => 'QA-Themes',
'author_url' => 'http://QA-Themes.com'
),
'banned-words-filter' => array(
'title' => 'Banned Words Filter',
'description' => 'Create a list of banned words and this plugin will send any post containing those words to moderation queue.',
'category' => 'Anti-Spam',
'popular' => false,
'url' => 'https://github.com/q2a-projects/Q2A-Banned-Words-filter',
'source' => 'https://github.com/q2a-projects/Q2A-Banned-Words-filter',
'download' => 'https://github.com/q2a-projects/Q2A-Banned-Words-filter/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => 'Towhid',
'developer_url' => 'http://TheRational.ist/',
'author' => 'QA-Themes',
'author_url' => 'http://QA-Themes.com'
),
'express-editor' => array(
'title' => 'Express Editor',
'description' => 'Recent version of CKEditor bundled with Ace Editor for smooth code editing.',
'category' => 'Editor',
'popular' => false,
'url' => 'https://github.com/amiyasahu/q2a-express-editor',
'source' => 'https://github.com/amiyasahu/q2a-express-editor',
'download' => 'https://github.com/amiyasahu/q2a-express-editor/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'Amiya Sahu',
'author_url' => 'http://amiyasahu.com/'
),
'delete-hidden-posts' => array(
'title' => 'Delete Hidden Posts',
'description' => 'Enables all hidden posts (including those with dependencies) to be deleted.',
'category' => 'Administration',
'popular' => false,
'url' => 'https://github.com/amiyasahu/q2a-delete-hidden-posts',
'source' => 'https://github.com/amiyasahu/q2a-delete-hidden-posts',
'download' => 'https://github.com/amiyasahu/q2a-delete-hidden-posts/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,
'price' => '',
'developer' => '',
'developer_url' => '',
'author' => 'Amiya Sahu',
'author_url' => 'http://amiyasahu.com/'
),
'breadcrumbs' => array(
'title' => 'Breadcrumbs',
'description' => 'Displays navigational breadcrumbs showing the path to the currently viewed page.',
'category' => 'Widget',
'popular' => false,
'url' => 'https://github.com/amiyasahu/q2a-breadcrumbs',
'source' => 'https://github.com/amiyasahu/q2a-breadcrumbs',
'download' => 'https://github.com/amiyasahu/q2a-breadcrumbs/archive/master.zip',
'buy' => '',
'opensource' => true,
'free' => true,