/var/www/(Del)hsihk.com/wp-content/themes/flatsome/inc/class-tgm-plugin-activation.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
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
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
<?php
/**
 * Plugin installation and activation for WordPress themes.
 *
 * @package   TGM-Plugin-Activation
 * @version   2.3.6
 * @author    Thomas Griffin <thomas@thomasgriffinmedia.com>
 * @author    Gary Jones <gamajo@gamajo.com>
 * @copyright Copyright (c) 2012, Thomas Griffin
 * @license   http://opensource.org/licenses/gpl-2.0.php GPL v2 or later
 * @link      https://github.com/thomasgriffin/TGM-Plugin-Activation
 */
 
/*
    Copyright 2012  Thomas Griffin  (email : thomas@thomasgriffinmedia.com)
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License, version 3, as
    published by the Free Software Foundation.
 
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/
 
if ( ! class_exists'TGM_Plugin_Activation' ) ) {
        
/**
         * Automatic plugin installation and activation library.
         *
         * Creates a way to automatically install and activate plugins from within themes.
         * The plugins can be either pre-packaged, downloaded from the WordPress
         * Plugin Repository or downloaded from a private repository.
         *
         * @since 1.0.0
         *
         * @package TGM-Plugin-Activation
         * @author Thomas Griffin <thomas@thomasgriffinmedia.com>
         * @author Gary Jones <gamajo@gamajo.com>
         */
        
class TGM_Plugin_Activation {
 
                
/**
                 * Holds a copy of itself, so it can be referenced by the class name.
                 *
                 * @since 1.0.0
                 *
                 * @var TGM_Plugin_Activation
                 */
                
static $instance;
 
                
/**
                 * Holds arrays of plugin details.
                 *
                 * @since 1.0.0
                 *
                 * @var array
                 */
                
public $plugins = array();
 
                
/**
                 * Parent menu slug for plugins page.
                 *
                 * @since 2.2.0
                 *
                 * @var string Parent menu slug. Defaults to 'themes.php'.
                 */
                
public $parent_menu_slug 'themes.php';
 
                
/**
                 * Parent URL slug for URL references.
                 *
                 * This is useful if you want to place the custom plugins page as a
                 * submenu item under a custom parent menu.
                 *
                 * @since 2.2.0
                 *
                 * @var string Parent URL slug. Defaults to 'themes.php'.
                 */
                
public $parent_url_slug 'themes.php';
 
                
/**
                 * Name of the querystring argument for the admin page.
                 *
                 * @since 1.0.0
                 *
                 * @var string
                 */
                
public $menu 'install-required-plugins';
 
                
/**
                 * Text domain for localization support.
                 *
                 * @since 1.1.0
                 *
                 * @var string
                 */
                
public $domain 'tgmpa';
 
                
/**
                 * Default absolute path to folder containing pre-packaged plugin zip files.
                 *
                 * @since 2.0.0
                 *
                 * @var string Absolute path prefix to packaged zip file location. Default is empty string.
                 */
                
public $default_path '';
 
                
/**
                 * Flag to show admin notices or not.
                 *
                 * @since 2.1.0
                 *
                 * @var boolean
                 */
                
public $has_notices true;
 
                
/**
                 * Flag to set automatic activation of plugins. Off by default.
                 *
                 * @since 2.2.0
                 *
                 * @var boolean
                 */
                
public $is_automatic false;
 
                
/**
                 * Optional message to display before the plugins table.
                 *
                 * @since 2.2.0
                 *
                 * @var string Message filtered by wp_kses_post(). Default is empty string.
                 */
                
public $message '';
 
                
/**
                 * Holds configurable array of strings.
                 *
                 * Default values are added in the constructor.
                 *
                 * @since 2.0.0
                 *
                 * @var array
                 */
                
public $strings = array();
 
                
/**
                 * Adds a reference of this object to $instance, populates default strings,
                 * does the tgmpa_init action hook, and hooks in the interactions to init.
                 *
                 * @since 1.0.0
                 *
                 * @see TGM_Plugin_Activation::init()
                 */
                
public function __construct() {
 
                        
self::$instance =& $this;
 
                        
$this->strings = array(
                                
'page_title'                      => __'Install Required Plugins'$this->domain ),
                                
'menu_title'                      => __'Install Plugins'$this->domain ),
                                
'installing'                      => __'Installing Plugin: %s'$this->domain ),
                                
'oops'                            => __'Something went wrong.'$this->domain ),
                                
'notice_can_install_required'     => _n_noop'This theme requires the following plugin: %1$s.''This theme requires the following plugins: %1$s.' ),
                                
'notice_can_install_recommended'  => _n_noop'This theme recommends the following plugin: %1$s.''This theme recommends the following plugins: %1$s.' ),
                                
'notice_cannot_install'           => _n_noop'Sorry, but you do not have the correct permissions to install the %s plugin. Contact the administrator of this site for help on getting the plugin installed.''Sorry, but you do not have the correct permissions to install the %s plugins. Contact the administrator of this site for help on getting the plugins installed.' ),
                                
'notice_can_activate_required'    => _n_noop'The following required plugin is currently inactive: %1$s.''The following required plugins are currently inactive: %1$s.' ),
                                
'notice_can_activate_recommended' => _n_noop'The following recommended plugin is currently inactive: %1$s.''The following recommended plugins are currently inactive: %1$s.' ),
                                
'notice_cannot_activate'          => _n_noop'Sorry, but you do not have the correct permissions to activate the %s plugin. Contact the administrator of this site for help on getting the plugin activated.''Sorry, but you do not have the correct permissions to activate the %s plugins. Contact the administrator of this site for help on getting the plugins activated.' ),
                                
'notice_ask_to_update'            => _n_noop'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.''The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.' ),
                                
'notice_cannot_update'            => _n_noop'Sorry, but you do not have the correct permissions to update the %s plugin. Contact the administrator of this site for help on getting the plugin updated.''Sorry, but you do not have the correct permissions to update the %s plugins. Contact the administrator of this site for help on getting the plugins updated.' ),
                                
'install_link'                                    => _n_noop'Begin installing plugin''Begin installing plugins' ),
                                
'activate_link'                                   => _n_noop'Activate installed plugin''Activate installed plugins' ),
                                
'return'                          => __'Return to Required Plugins Installer'$this->domain ),
                                
'plugin_activated'                => __'Plugin activated successfully.'$this->domain ),
                                
'complete'                        => __'All plugins installed and activated successfully. %1$s'$this->domain ),
                        );
 
                        
/** Annouce that the class is ready, and pass the object (for advanced use) */
                        
do_action_ref_array'tgmpa_init', array( &$this ) );
 
                        
/** When the rest of WP has loaded, kick-start the rest of the class */
                        
add_action'init', array( &$this'init' ) );
 
                }
 
                
/**
                 * Initialise the interactions between this class and WordPress.
                 *
                 * Hooks in three new methods for the class: admin_menu, notices and styles.
                 *
                 * @since 2.0.0
                 *
                 * @see TGM_Plugin_Activation::admin_menu()
                 * @see TGM_Plugin_Activation::notices()
                 * @see TGM_Plugin_Activation::styles()
                 */
                
public function init() {
 
                        
do_action'tgmpa_register' );
                        
/** After this point, the plugins should be registered and the configuration set */
 
                        /** Proceed only if we have plugins to handle */
                        
if ( $this->plugins ) {
                                
$sorted = array(); // Prepare variable for sorting
 
                                
foreach ( $this->plugins as $plugin )
                                        
$sorted[] = $plugin['name'];
 
                                
array_multisort$sortedSORT_ASC$this->plugins ); // Sort plugins alphabetically by name
 
                                
add_action'admin_menu', array( &$this'admin_menu' ) );
                                
add_action'admin_head', array( &$this'dismiss' ) );
                                
add_filter'install_plugin_complete_actions', array( &$this'actions' ) );
 
                                
/** Load admin bar in the header to remove flash when installing plugins */
                                
if ( $this->is_tgmpa_page() ) {
                                        
remove_action'wp_footer''wp_admin_bar_render'1000 );
                                        
remove_action'admin_footer''wp_admin_bar_render'1000 );
                                        
add_action'wp_head''wp_admin_bar_render'1000 );
                                        
add_action'admin_head''wp_admin_bar_render'1000 );
                                }
 
                                if ( 
$this->has_notices ) {
                                        
add_action'admin_notices', array( &$this'notices' ) );
                                        
add_action'admin_init', array( &$this'admin_init' ), );
                                        
add_action'admin_enqueue_scripts', array( &$this'thickbox' ) );
                                        
add_action'switch_theme', array( &$this'update_dismiss' ) );
                                }
 
                                
/** Setup the force activation hook */
                                
foreach ( $this->plugins as $plugin ) {
                                        if ( isset( 
$plugin['force_activation'] ) && true === $plugin['force_activation'] ) {
                                                
add_action'admin_init', array( &$this'force_activation' ) );
                                                break;
                                        }
                                }
 
                                
/** Setup the force deactivation hook */
                                
foreach ( $this->plugins as $plugin ) {
                                        if ( isset( 
$plugin['force_deactivation'] ) && true === $plugin['force_deactivation'] ) {
                                                
add_action'switch_theme', array( &$this'force_deactivation' ) );
                                                break;
                                        }
                                }
                        }
 
                }
 
                
/**
                 * Handles calls to show plugin information via links in the notices.
                 *
                 * We get the links in the admin notices to point to the TGMPA page, rather
                 * than the typical plugin-install.php file, so we can prepare everything
                 * beforehand.
                 *
                 * WP doesn't make it easy to show the plugin information in the thickbox -
                 * here we have to require a file that includes a function that does the
                 * main work of displaying it, enqueue some styles, set up some globals and
                 * finally call that function before exiting.
                 *
                 * Down right easy once you know how...
                 *
                 * @since 2.1.0
                 *
                 * @global string $tab Used as iframe div class names, helps with styling
                 * @global string $body_id Used as the iframe body ID, helps with styling
                 * @return null Returns early if not the TGMPA page.
                 */
                
public function admin_init() {
 
                        if ( ! 
$this->is_tgmpa_page() )
                                return;
 
                        if ( isset( 
$_REQUEST['tab'] ) && 'plugin-information' == $_REQUEST['tab'] ) {
                                require_once 
ABSPATH 'wp-admin/includes/plugin-install.php'// Need for install_plugin_information()
 
                                
wp_enqueue_style'plugin-install' );
 
                                global 
$tab$body_id;
                                
$body_id $tab 'plugin-information';
 
                                
install_plugin_information();
 
                                exit;
                        }
 
                }
 
                
/**
                 * Enqueues thickbox scripts/styles for plugin info.
                 *
                 * Thickbox is not automatically included on all admin pages, so we must
                 * manually enqueue it for those pages.
                 *
                 * Thickbox is only loaded if the user has not dismissed the admin
                 * notice or if there are any plugins left to install and activate.
                 *
                 * @since 2.1.0
                 */
                
public function thickbox() {
 
                        if ( ! 
get_user_metaget_current_user_id(), 'tgmpa_dismissed_notice'true ) )
                                
add_thickbox();
 
                }
 
                
/**
                 * Adds submenu page under 'Appearance' tab.
                 *
                 * This method adds the submenu page letting users know that a required
                 * plugin needs to be installed.
                 *
                 * This page disappears once the plugin has been installed and activated.
                 *
                 * @since 1.0.0
                 *
                 * @see TGM_Plugin_Activation::init()
                 * @see TGM_Plugin_Activation::install_plugins_page()
                 */
                
public function admin_menu() {
 
                        
// Make sure privileges are correct to see the page
                        
if ( ! current_user_can'install_plugins' ) )
                                return;
 
                        
$this->populate_file_path();
 
                        foreach ( 
$this->plugins as $plugin ) {
                                if ( ! 
is_plugin_active$plugin['file_path'] ) ) {
                                        
add_submenu_page(
                                                
$this->parent_menu_slug,                                // Parent menu slug
                                                
$this->strings['page_title'],           // Page title
                                                
$this->strings['menu_title'],           // Menu title
                                                
'edit_theme_options',                   // Capability
                                                
$this->menu,                            // Menu slug
                                                
array( &$this'install_plugins_page' // Callback
                                        
);
                                break;
                                }
                        }
 
                }
 
                
/**
                 * Echoes plugin installation form.
                 *
                 * This method is the callback for the admin_menu method function.
                 * This displays the admin page and form area where the user can select to install and activate the plugin.
                 *
                 * @since 1.0.0
                 *
                 * @return null Aborts early if we're processing a plugin installation action
                 */
                
public function install_plugins_page() {
 
                        
/** Store new instance of plugin table in object */
                        
$plugin_table = new TGMPA_List_Table;
 
                        
/** Return early if processing a plugin installation action */
                        
if ( isset( $_POST[sanitize_key'action' )] ) && 'tgmpa-bulk-install' == $_POST[sanitize_key'action' )] && $plugin_table->process_bulk_actions() || $this->do_plugin_install() )
                                return;
 
                        
?>
                        <div class="tgmpa wrap">
 
                                <?php screen_iconapply_filters'tgmpa_default_screen_icon''themes' ) ); ?>
                                <h2><?php echo esc_htmlget_admin_page_title() ); ?></h2>
                                <?php $plugin_table->prepare_items(); ?>
 
                                <?php if ( isset( $this->message ) ) _ewp_kses_post$this->message ), $this->domain ); ?>
 
                                <form id="tgmpa-plugins" action="" method="post">
                        <input type="hidden" name="tgmpa-page" value="<?php echo $this->menu?>" />
                        <?php $plugin_table->display(); ?>
                        </form>
 
                        </div>
                        <?php
 
                
}
 
                
/**
                 * Installs a plugin or activates a plugin depending on the hover
                 * link clicked by the user.
                 *
                 * Checks the $_GET variable to see which actions have been
                 * passed and responds with the appropriate method.
                 *
                 * Uses WP_Filesystem to process and handle the plugin installation
                 * method.
                 *
                 * @since 1.0.0
                 *
                 * @uses WP_Filesystem
                 * @uses WP_Error
                 * @uses WP_Upgrader
                 * @uses Plugin_Upgrader
                 * @uses Plugin_Installer_Skin
                 *
                 * @return boolean True on success, false on failure
                 */
                
protected function do_plugin_install() {
 
                        
/** All plugin information will be stored in an array for processing */
                        
$plugin = array();
 
                        
/** Checks for actions from hover links to process the installation */
                        
if ( isset( $_GET[sanitize_key'plugin' )] ) && ( isset( $_GET[sanitize_key'tgmpa-install' )] ) && 'install-plugin' == $_GET[sanitize_key'tgmpa-install' )] ) ) {
                                
check_admin_referer'tgmpa-install' );
 
                                
$plugin['name']   = $_GET[sanitize_key'plugin_name' )]; // Plugin name
                                
$plugin['slug']   = $_GET[sanitize_key'plugin' )]; // Plugin slug
                                
$plugin['source'] = $_GET[sanitize_key'plugin_source' )]; // Plugin source
 
                                /** Pass all necessary information via URL if WP_Filesystem is needed */
                                
$url wp_nonce_url(
                                        
add_query_arg(
                                                array(
                                                        
'page'          => $this->menu,
                                                        
'plugin'        => $plugin['slug'],
                                                        
'plugin_name'   => $plugin['name'],
                                                        
'plugin_source' => $plugin['source'],
                                                        
'tgmpa-install' => 'install-plugin',
                                                ),
                                                
admin_url$this->parent_url_slug )
                                        ),
                                        
'tgmpa-install'
                                
);
                                
$method ''// Leave blank so WP_Filesystem can populate it as necessary
                                
$fields = array( sanitize_key'tgmpa-install' ) ); // Extra fields to pass to WP_Filesystem
 
                                
if ( false === ( $creds request_filesystem_credentials$url$methodfalsefalse$fields ) ) )
                                        return 
true;
 
                                if ( ! 
WP_Filesystem$creds ) ) {
                                        
request_filesystem_credentials$url$methodtruefalse$fields ); // Setup WP_Filesystem
                                        
return true;
                                }
 
                                require_once 
ABSPATH 'wp-admin/includes/plugin-install.php'// Need for plugins_api
                                
require_once ABSPATH 'wp-admin/includes/class-wp-upgrader.php'// Need for upgrade classes
 
                                /** Set plugin source to WordPress API link if available */
                                
if ( isset( $plugin['source'] ) && 'repo' == $plugin['source'] ) {
                                        
$api plugins_api'plugin_information', array( 'slug' => $plugin['slug'], 'fields' => array( 'sections' => false ) ) );
                                       
                                        if ( 
is_wp_error$api ) )
                                                
wp_die$this->strings['oops'] . var_dump$api ) );
                                               
                                        if ( isset( 
$api->download_link ) )
                                                
$plugin['source'] = $api->download_link;
                                }
 
                                
/** Set type, based on whether the source starts with http:// or https:// */
                                
$type preg_match'|^http(s)?://|'$plugin['source'] ) ? 'web' 'upload';
 
                                
/** Prep variables for Plugin_Installer_Skin class */
                                
$title sprintf$this->strings['installing'], $plugin['name'] );
                                
$url   add_query_arg( array( 'action' => 'install-plugin''plugin' => $plugin['slug'] ), 'update.php' );
                                if ( isset( 
$_GET['from'] ) )
                                        
$url .= add_query_arg'from'urlencodestripslashes$_GET['from'] ) ), $url );
 
                                
$nonce 'install-plugin_' $plugin['slug'];
 
                                
/** Prefix a default path to pre-packaged plugins */
                                
$source = ( 'upload' == $type ) ? $this->default_path $plugin['source'] : $plugin['source'];
 
                                
/** Create a new instance of Plugin_Upgrader */
                                
$upgrader = new Plugin_Upgrader$skin = new Plugin_Installer_Skincompact'type''title''url''nonce''plugin''api' ) ) );
 
                                
/** Perform the action and install the plugin from the $source urldecode() */
                                
$upgrader->install$source );
 
                                
/** Flush plugins cache so we can make sure that the installed plugins list is always up to date */
                                
wp_cache_flush();
 
                                
/** Only activate plugins if the config option is set to true */
                                
if ( $this->is_automatic ) {
                                        
$plugin_activate $upgrader->plugin_info(); // Grab the plugin info from the Plugin_Upgrader method
                                        
$activate activate_plugin$plugin_activate ); // Activate the plugin
                                        
$this->populate_file_path(); // Re-populate the file path now that the plugin has been installed and activated
 
                                        
if ( is_wp_error$activate ) ) {
                                                echo 
'<div id="message" class="error"><p>' $activate->get_error_message() . '</p></div>';
                                                echo 
'<p><a href="' add_query_arg'page'$this->menuadmin_url$this->parent_url_slug ) ) . '" title="' esc_attr$this->strings['return'] ) . '" target="_parent">' __'Return to Required Plugins Installer'$this->domain ) . '</a></p>';
                                                return 
true// End it here if there is an error with automatic activation
                                        
}
                                        else {
                                                echo 
'<p>' $this->strings['plugin_activated'] . '</p>';
                                        }
                                }
 
                                
/** Display message based on if all plugins are now active or not */
                                
$complete = array();
                                foreach ( 
$this->plugins as $plugin ) {
                                        if ( ! 
is_plugin_active$plugin['file_path'] ) ) {
                                                echo 
'<p><a href="' add_query_arg'page'$this->menuadmin_url$this->parent_url_slug ) ) . '" title="' esc_attr$this->strings['return'] ) . '" target="_parent">' __$this->strings['return'], $this->domain ) . '</a></p>';
                                                
$complete[] = $plugin;
                                                break;
                                        }
                                        
/** Nothing to store */
                                        
else {
                                                
$complete[] = '';
                                        }
                                }
 
                                
/** Filter out any empty entries */
                                
$complete array_filter$complete );
 
                                
/** All plugins are active, so we display the complete string and hide the plugin menu */
                                
if ( empty( $complete ) ) {
                                        echo 
'<p>' .  sprintf$this->strings['complete'], '<a href="' admin_url() . '" title="' __'Return to the Dashboard'$this->domain ) . '">' __'Return to the Dashboard'$this->domain ) . '</a>' ) . '</p>';
                                        echo 
'<style type="text/css">#adminmenu .wp-submenu li.current { display: none !important; }</style>';
                                }
 
                                return 
true;
                        }
                        
/** Checks for actions from hover links to process the activation */
                        
elseif ( isset( $_GET[sanitize_key'plugin' )] ) && ( isset( $_GET[sanitize_key'tgmpa-activate' )] ) && 'activate-plugin' == $_GET[sanitize_key'tgmpa-activate' )] ) ) {
                                
check_admin_referer'tgmpa-activate''tgmpa-activate-nonce' );
 
                                
/** Populate $plugin array with necessary information */
                                
$plugin['name']   = $_GET[sanitize_key'plugin_name' )];
                                
$plugin['slug']   = $_GET[sanitize_key'plugin' )];
                                
$plugin['source'] = $_GET[sanitize_key'plugin_source' )];
 
                                
$plugin_data get_plugins'/' $plugin['slug'] ); // Retrieve all plugins
                                
$plugin_file array_keys$plugin_data ); // Retrieve all plugin files from installed plugins
                                
$plugin_to_activate $plugin['slug'] . '/' $plugin_file[0]; // Match plugin slug with appropriate plugin file
                                
$activate activate_plugin$plugin_to_activate ); // Activate the plugin
 
                                
if ( is_wp_error$activate ) ) {
                                        echo 
'<div id="message" class="error"><p>' $activate->get_error_message() . '</p></div>';
                                        echo 
'<p><a href="' add_query_arg'page'$this->menuadmin_url$this->parent_url_slug ) ) . '" title="' esc_attr$this->strings['return'] ) . '" target="_parent">' __$this->strings['return'], $this->domain ) . '</a></p>';
                                        return 
true// End it here if there is an error with activation
                                
}
                                else {
                                        
/** Make sure message doesn't display again if bulk activation is performed immediately after a single activation */
                                        
if ( ! isset( $_POST[sanitize_key'action' )] ) ) {
                                                
$msg sprintf__'The following plugin was activated successfully: %s.'$this->domain ), '<strong>' $plugin['name'] . '</strong>' );
                                                echo 
'<div id="message" class="updated"><p>' $msg '</p></div>';
                                        }
                                }
                        }
 
                        return 
false;
 
                }
 
                
/**
                 * Echoes required plugin notice.
                 *
                 * Outputs a message telling users that a specific plugin is required for
                 * their theme. If appropriate, it includes a link to the form page where
                 * users can install and activate the plugin.
                 *
                 * @since 1.0.0
                 *
                 * @global object $current_screen
                 * @return null Returns early if we're on the Install page
                 */
                
public function notices() {
 
                        global 
$current_screen;
 
                        
/** Remove nag on the install page */
                        
if ( $this->is_tgmpa_page() )
                                return;
 
                        
$installed_plugins get_plugins(); // Retrieve a list of all the plugins
                        
$this->populate_file_path();
 
                        
$message              = array(); // Store the messages in an array to be outputted after plugins have looped through
                        
$install_link         false// Set to false, change to true in loop if conditions exist, used for action link 'install'
                        
$install_link_count   0// Used to determine plurality of install action link text
                        
$activate_link        false// Set to false, change to true in loop if conditions exist, used for action link 'activate'
                        
$activate_link_count  0// Used to determine plurality of activate action link text
 
                        
foreach ( $this->plugins as $plugin ) {
                                
/** If the plugin is installed and active, check for minimum version argument before moving forward */
                                
if ( is_plugin_active$plugin['file_path'] ) ) {
                                        
/** A minimum version has been specified */
                                        
if ( isset( $plugin['version'] ) ) {
                                                if ( isset( 
$installed_plugins[$plugin['file_path']]['Version'] ) ) {
                                                        
/** If the current version is less than the minimum required version, we display a message */
                                                        
if ( version_compare$installed_plugins[$plugin['file_path']]['Version'], $plugin['version'], '<' ) ) {
                                                                if ( 
current_user_can'install_plugins' ) )
                                                                        
$message['notice_ask_to_update'][] = $plugin['name'];
                                                                else
                                                                        
$message['notice_cannot_update'][] = $plugin['name'];
                                                        }
                                                }
                                                
/** Can't find the plugin, so iterate to the next condition */
                                                
else {
                                                        continue;
                                                }
                                        }
                                        
/** No minimum version specified, so iterate over the plugin */
                                        
else {
                                                continue;
                                        }
                                }
 
                                
/** Not installed */
                                
if ( ! isset( $installed_plugins[$plugin['file_path']] ) ) {
                                        
$install_link true// We need to display the 'install' action link
                                        
$install_link_count++; // Increment the install link count
                                        
if ( current_user_can'install_plugins' ) ) {
                                                if ( 
$plugin['required'] )
                                                        
$message['notice_can_install_required'][] = $plugin['name'];
                                                
/** This plugin is only recommended */
                                                
else
                                                        
$message['notice_can_install_recommended'][] = $plugin['name'];
                                        }
                                        
/** Need higher privileges to install the plugin */
                                        
else {
                                                
$message['notice_cannot_install'][] = $plugin['name'];
                                        }
                                }
                                
/** Installed but not active */
                                
elseif ( is_plugin_inactive$plugin['file_path'] ) ) {
                                        
$activate_link true// We need to display the 'activate' action link
                                        
$activate_link_count++; // Increment the activate link count
                                        
if ( current_user_can'activate_plugins' ) ) {
                                                if ( ( isset( 
$plugin['required'] ) ) && ( $plugin['required'] ) )
                                                        
$message['notice_can_activate_required'][] = $plugin['name'];
                                                
/** This plugin is only recommended */
                                                
else {
                                                        
$message['notice_can_activate_recommended'][] = $plugin['name'];
                                                }
                                        }
                                        
/** Need higher privileges to activate the plugin */
                                        
else {
                                                
$message['notice_cannot_activate'][] = $plugin['name'];
                                        }
                                }
                        }
 
                        
/** Only process the nag messages if the user has not dismissed them already */
                        
if ( ! get_user_metaget_current_user_id(), 'tgmpa_dismissed_notice'true ) ) {
                                
/** If we have notices to display, we move forward */
                                
if ( ! empty( $message ) ) {
                                        
krsort$message ); // Sort messages
                                        
$rendered ''// Display all nag messages as strings
 
                                        /** Grab all plugin names */
                                        
foreach ( $message as $type => $plugin_groups ) {
                                                
$linked_plugin_groups = array();
 
                                                
/** Count number of plugins in each message group to calculate singular/plural message */
                                                
$count count$plugin_groups );
 
                                                
/** Loop through the plugin names to make the ones pulled from the .org repo linked */
                                                
foreach ( $plugin_groups as $plugin_group_single_name ) {
                                                        
$external_url $this->_get_plugin_data_from_name$plugin_group_single_name'external_url' );
                                                        
$source $this->_get_plugin_data_from_name$plugin_group_single_name'source' );
 
                                                        if ( 
$external_url && preg_match'|^http(s)?://|'$external_url ) ) {
                                                                
$linked_plugin_groups[] = '<a href="' esc_url$external_url ) . '" title="' $plugin_group_single_name '" target="_blank">' $plugin_group_single_name '</a>';
                                                        }
                                                        elseif ( ! 
$source || preg_match'|^http://wordpress.org/extend/plugins/|'$source ) ) {
                                                                
$url add_query_arg(
                                                                        array(
                                                                                
'tab'       => 'plugin-information',
                                                                                
'plugin'    => $this->_get_plugin_data_from_name$plugin_group_single_name ),
                                                                                
'TB_iframe' => 'true',
                                                                                
'width'     => '640',
                                                                                
'height'    => '500',
                                                                        ),
                                                                        
admin_url'plugin-install.php' )
                                                                );
 
                                                                
$linked_plugin_groups[] = '<a href="' esc_url$url ) . '" class="thickbox" title="' $plugin_group_single_name '">' $plugin_group_single_name '</a>';
                                                        }
                                                        else {
                                                                
$linked_plugin_groups[] = $plugin_group_single_name// No hyperlink
                                                        
}
 
                                                        if ( isset( 
$linked_plugin_groups ) && (array) $linked_plugin_groups )
                                                                
$plugin_groups $linked_plugin_groups;
                                                }
 
                                                
$last_plugin array_pop$plugin_groups ); // Pop off last name to prep for readability
                                                
$imploded    = empty( $plugin_groups ) ? '<em>' $last_plugin '</em>' '<em>' . ( implode', '$plugin_groups ) . '</em> and <em>' $last_plugin '</em>' );
 
                                                
$rendered .= '<p>' sprintftranslate_nooped_plural$this->strings[$type], $count$this->domain ), $imploded$count ) . '</p>'// All messages now stored
                                        
}
 
                                        
/** Setup variables to determine if action links are needed */
                                        
$show_install_link  $install_link '<a href="' add_query_arg'page'$this->menuadmin_url$this->parent_url_slug ) ) . '">' translate_nooped_plural$this->strings['install_link'], $install_link_count$this->domain ) . '</a>' '';
                                        
$show_activate_link $activate_link '<a href="' admin_url'plugins.php' ) . '">' translate_nooped_plural$this->strings['activate_link'], $activate_link_count$this->domain ) . '</a>'  '';
 
                                        
/** Define all of the action links */
                                        
$action_links apply_filters(
                                                
'tgmpa_notice_action_links',
                                                array(
                                                        
'install'  => ( current_user_can'install_plugins' ) ) ? $show_install_link '',
                                                        
'activate' => ( current_user_can'activate_plugins' ) ) ? $show_activate_link '',
                                                        
'dismiss'  => '<a class="dismiss-notice" href="' add_query_arg'tgmpa-dismiss''dismiss_admin_notices' ) . '" target="_parent">' __'Dismiss this notice'$this->domain ) . '</a>',
                                                )
                                        );
 
                                        
$action_links array_filter$action_links ); // Remove any empty array items
                                        
if ( $action_links )
                                                
$rendered .= '<p>' implode' | '$action_links ) . '</p>';
 
                                        
/** Register the nag messages and prepare them to be processed */
                        
if ( isset( $this->strings['nag_type'] ) )
                                                
add_settings_error'tgmpa''tgmpa'$renderedsanitize_html_classstrtolower$this->strings['nag_type'] ), 'updated' ) );
                                        else
                                                
add_settings_error'tgmpa''tgmpa'$rendered'updated' );
                                }
                        }
 
                        
/** Admin options pages already output settings_errors, so this is to avoid duplication */
                        
if ( 'options-general' !== $current_screen->parent_base )
                                
settings_errors'tgmpa' );
 
                }
 
                
/**
                 * Add dismissable admin notices.
                 *
                 * Appends a link to the admin nag messages. If clicked, the admin notice disappears and no longer is visible to users.
                 *
                 * @since 2.1.0
                 */
                
public function dismiss() {
 
                        if ( isset( 
$_GET[sanitize_key'tgmpa-dismiss' )] ) )
                                
update_user_metaget_current_user_id(), 'tgmpa_dismissed_notice');
 
                }
 
                
/**
                 * Add individual plugin to our collection of plugins.
                 *
                 * If the required keys are not set, the plugin is not added.
                 *
                 * @since 2.0.0
                 *
                 * @param array $plugin Array of plugin arguments.
                 */
                
public function register$plugin ) {
 
                        if ( ! isset( 
$plugin['slug'] ) || ! isset( $plugin['name'] ) )
                                return;
 
                        
$this->plugins[] = $plugin;
 
                }
 
                
/**
                 * Amend default configuration settings.
                 *
                 * @since 2.0.0
                 *
                 * @param array $config
                 */
                
public function config$config ) {
 
                        
$keys = array( 'default_path''parent_menu_slug''parent_url_slug''domain''has_notices''menu''is_automatic''message''strings' );
 
                        foreach ( 
$keys as $key ) {
                                if ( isset( 
$config[$key] ) ) {
                                        if ( 
is_array$config[$key] ) ) {
                                                foreach ( 
$config[$key] as $subkey => $value )
                                                        
$this->{$key}[$subkey] = $value;
                                        } else {
                                                
$this->$key $config[$key];
                                        }
                                }
                        }
 
                }
 
                
/**
                 * Amend action link after plugin installation.
                 *
                 * @since 2.0.0
                 *
                 * @param array $install_actions Existing array of actions
                 * @return array Amended array of actions
                 */
                
public function actions$install_actions ) {
 
                        
/** Remove action links on the TGMPA install page */
                        
if ( $this->is_tgmpa_page() )
                                return 
false;
 
                        return 
$install_actions;
 
                }
 
                
/**
                 * Set file_path key for each installed plugin.
                 *
                 * @since 2.1.0
                 */
                
public function populate_file_path() {
 
                        
/** Add file_path key for all plugins */
                        
foreach ( $this->plugins as $plugin => $values )
                                
$this->plugins[$plugin]['file_path'] = $this->_get_plugin_basename_from_slug$values['slug'] );
 
                }
 
                
/**
                 * Helper function to extract the file path of the plugin file from the
                 * plugin slug, if the plugin is installed.
                 *
                 * @since 2.0.0
                 *
                 * @param string $slug Plugin slug (typically folder name) as provided by the developer
                 * @return string Either file path for plugin if installed, or just the plugin slug
                 */
                
protected function _get_plugin_basename_from_slug$slug ) {
 
                        
$keys array_keysget_plugins() );
 
                        foreach ( 
$keys as $key ) {
                                if ( 
preg_match'|^' $slug .'|'$key ) )
                                        return 
$key;
                        }
 
                        return 
$slug;
 
                }
 
                
/**
                 * Retrieve plugin data, given the plugin name.
                 *
                 * Loops through the registered plugins looking for $name. If it finds it,
                 * it returns the $data from that plugin. Otherwise, returns false.
                 *
                 * @since 2.1.0
                 *
                 * @param string $name Name of the plugin, as it was registered
                 * @param string $data Optional. Array key of plugin data to return. Default is slug
                 * @return string|boolean Plugin slug if found, false otherwise.
                 */
                
protected function _get_plugin_data_from_name$name$data 'slug' ) {
 
                        foreach ( 
$this->plugins as $plugin => $values ) {
                                if ( 
$name == $values['name'] && isset( $values[$data] ) )
                                        return 
$values[$data];
                        }
 
                        return 
false;
 
                }
 
                
/**
                 * Determine if we're on the TGMPA Install page.
                 *
                 * We use $current_screen when it is available, and a slightly less ideal
                 * conditional when it isn't (like when displaying the plugin information
                 * thickbox).
                 *
                 * @since 2.1.0
                 *
                 * @global object $current_screen
                 * @return boolean True when on the TGMPA page, false otherwise.
                 */
                
protected function is_tgmpa_page() {
 
                        global 
$current_screen;
 
                        if ( ! 
is_null$current_screen ) && $this->parent_menu_slug == $current_screen->parent_file && isset( $_GET['page'] ) && $this->menu === $_GET['page'] )
                                return 
true;
 
                        if ( isset( 
$_GET['page'] ) && $this->menu === $_GET['page'] )
                                return 
true;
 
                        return 
false;
 
                }
 
                
/**
                 * Delete dismissable nag option when theme is switched.
                 *
                 * This ensures that the user is again reminded via nag of required
                 * and/or recommended plugins if they re-activate the theme.
                 *
                 * @since 2.1.1
                 */
                
public function update_dismiss() {
 
                        
delete_user_metaget_current_user_id(), 'tgmpa_dismissed_notice' );
 
                }
 
                
/**
                 * Forces plugin activation if the parameter 'force_activation' is
                 * set to true.
                 *
                 * This allows theme authors to specify certain plugins that must be
                 * active at all times while using the current theme.
                 *
                 * Please take special care when using this parameter as it has the
                 * potential to be harmful if not used correctly. Setting this parameter
                 * to true will not allow the specified plugin to be deactivated unless
                 * the user switches themes.
                 *
                 * @since 2.2.0
                 */
                
public function force_activation() {
 
                        
/** Set file_path parameter for any installed plugins */
                        
$this->populate_file_path();
                       
                        
$installed_plugins get_plugins();
 
                        foreach ( 
$this->plugins as $plugin ) {
                                
/** Oops, plugin isn't there so iterate to next condition */
                                
if ( isset( $plugin['force_activation'] ) && $plugin['force_activation'] && ! isset( $installed_plugins[$plugin['file_path']] ) )
                                        continue;
                                
/** There we go, activate the plugin */
                                
elseif ( isset( $plugin['force_activation'] ) && $plugin['force_activation'] && is_plugin_inactive$plugin['file_path'] ) )
                                        
activate_plugin$plugin['file_path'] );
                        }
 
                }
 
                
/**
                 * Forces plugin deactivation if the parameter 'force_deactivation'
                 * is set to true.
                 *
                 * This allows theme authors to specify certain plugins that must be
                 * deactived upon switching from the current theme to another.
                 *
                 * Please take special care when using this parameter as it has the
                 * potential to be harmful if not used correctly.
                 *
                 * @since 2.2.0
                 */
                
public function force_deactivation() {
 
                        
/** Set file_path parameter for any installed plugins */
                        
$this->populate_file_path();
 
                        foreach ( 
$this->plugins as $plugin ) {
                                
/** Only proceed forward if the paramter is set to true and plugin is active */
                                
if ( isset( $plugin['force_deactivation'] ) && $plugin['force_deactivation'] && is_plugin_active$plugin['file_path'] ) )
                                        
deactivate_plugins$plugin['file_path'] );
                        }
 
                }
 
        }
}
 
/** Create a new instance of the class */
new TGM_Plugin_Activation;
 
if ( ! 
function_exists'tgmpa' ) ) {
        
/**
         * Helper function to register a collection of required plugins.
         *
         * @since 2.0.0
         * @api
         *
         * @param array $plugins An array of plugin arrays
         * @param array $config Optional. An array of configuration values
         */
        
function tgmpa$plugins$config = array() ) {
 
                foreach ( 
$plugins as $plugin )
                        
TGM_Plugin_Activation::$instance->register$plugin );
 
                if ( 
$config )
                        
TGM_Plugin_Activation::$instance->config$config );
 
        }
}
 
/**
 * WP_List_Table isn't always available. If it isn't available,
 * we load it here.
 *
 * @since 2.2.0
 */
if ( ! class_exists'WP_List_Table' ) )
        require_once( 
ABSPATH 'wp-admin/includes/class-wp-list-table.php' );
 
if ( ! 
class_exists'TGMPA_List_Table' ) ) {
        
/**
         * List table class for handling plugins.
         *
         * Extends the WP_List_Table class to provide a future-compatible
         * way of listing out all required/recommended plugins.
         *
         * Gives users an interface similar to the Plugin Administration
         * area with similar (albeit stripped down) capabilities.
         *
         * This class also allows for the bulk install of plugins.
         *
         * @since 2.2.0
         *
         * @package TGM-Plugin-Activation
         * @author Thomas Griffin <thomas@thomasgriffinmedia.com>
         * @author Gary Jones <gamajo@gamajo.com>
         */
        
class TGMPA_List_Table extends WP_List_Table {
 
                
/**
                 * References parent constructor and sets defaults for class.
                 *
                 * The constructor also grabs a copy of $instance from the TGMPA class
                 * and stores it in the global object TGM_Plugin_Activation::$instance.
                 *
                 * @since 2.2.0
                 *
                 * @global unknown $status
                 * @global string $page
                 */
                
public function __construct() {
 
                        global 
$status$page;
 
                        
parent::__construct(
                                array(
                                        
'singular' => 'plugin',
                                        
'plural'   => 'plugins',
                                        
'ajax'     => false,
                                )
                        );
 
                }
 
                
/**
                 * Gathers and renames all of our plugin information to be used by
                 * WP_List_Table to create our table.
                 *
                 * @since 2.2.0
                 *
                 * @return array $table_data Information for use in table
                 */
                
protected function _gather_plugin_data() {
 
                        
/** Load thickbox for plugin links */
                        
TGM_Plugin_Activation::$instance->admin_init();
                        
TGM_Plugin_Activation::$instance->thickbox();
 
                        
/** Prep variables for use and grab list of all installed plugins */
                        
$table_data = array();
                        
$i 0;
                        
$installed_plugins get_plugins();
 
                        foreach ( 
TGM_Plugin_Activation::$instance->plugins as $plugin ) {
                                if ( 
is_plugin_active$plugin['file_path'] ) )
                                        continue; 
// No need to display plugins if they are installed and activated
 
                                
$table_data[$i]['sanitized_plugin'] = $plugin['name'];
                                
$table_data[$i]['slug'] = $this->_get_plugin_data_from_name$plugin['name'] );
 
                                
$external_url $this->_get_plugin_data_from_name$plugin['name'], 'external_url' );
                                
$source $this->_get_plugin_data_from_name$plugin['name'], 'source' );
 
                                if ( 
$external_url && preg_match'|^http(s)?://|'$external_url ) ) {
                                        
$table_data[$i]['plugin'] = '<strong><a href="' esc_url$external_url ) . '" title="' $plugin['name'] . '" target="_blank">' $plugin['name'] . '</a></strong>';
                                }
                                elseif ( ! 
$source || preg_match'|^http://wordpress.org/extend/plugins/|'$source ) ) {
                                        
$url add_query_arg(
                                                array(
                                                        
'tab'       => 'plugin-information',
                                                        
'plugin'    => $this->_get_plugin_data_from_name$plugin['name'] ),
                                                        
'TB_iframe' => 'true',
                                                        
'width'     => '640',
                                                        
'height'    => '500',
                                                ),
                                                
admin_url'plugin-install.php' )
                                        );
 
                                        
$table_data[$i]['plugin'] = '<strong><a href="' esc_url$url ) . '" class="thickbox" title="' $plugin['name'] . '">' $plugin['name'] . '</a></strong>';
                                }
                                else {
                                        
$table_data[$i]['plugin'] = '<strong>' $plugin['name'] . '</strong>'// No hyperlink
                                
}
 
                                if ( isset( 
$table_data[$i]['plugin'] ) && (array) $table_data[$i]['plugin'] )
                                        
$plugin['name'] = $table_data[$i]['plugin'];
 
                                if ( isset( 
$plugin['external_url'] ) ) {
                                        
/** The plugin is linked to an external source */
                                        
$table_data[$i]['source'] = __'External Link'TGM_Plugin_Activation::$instance->domain );
                                }
                                elseif ( isset( 
$plugin['source'] ) ) {
                                        
/** The plugin must be from a private repository */
                                        
if ( preg_match'|^http(s)?://|'$plugin['source'] ) )
                                                
$table_data[$i]['source'] = __'Private Repository'TGM_Plugin_Activation::$instance->domain );
                                        
/** The plugin is pre-packaged with the theme */
                                        
else
                                                
$table_data[$i]['source'] = __'Pre-Packaged'TGM_Plugin_Activation::$instance->domain );
                                }
                                
/** The plugin is from the WordPress repository */
                                
else {
                                        
$table_data[$i]['source'] = __'WordPress Repository'TGM_Plugin_Activation::$instance->domain );
                                }
 
                                
$table_data[$i]['type'] = $plugin['required'] ? __'Required'TGM_Plugin_Activation::$instance->domain ) : __'Recommended'TGM_Plugin_Activation::$instance->domain );
 
                                if ( ! isset( 
$installed_plugins[$plugin['file_path']] ) )
                                        
$table_data[$i]['status'] = sprintf'%1$s'__'Not Installed'TGM_Plugin_Activation::$instance->domain ) );
                                elseif ( 
is_plugin_inactive$plugin['file_path'] ) )
                                        
$table_data[$i]['status'] = sprintf'%1$s'__'Installed But Not Activated'TGM_Plugin_Activation::$instance->domain ) );
 
                                
$table_data[$i]['file_path'] = $plugin['file_path'];
                                
$table_data[$i]['url'] = isset( $plugin['source'] ) ? $plugin['source'] : 'repo';
 
                                
$i++;
                        }
                       
                        
/** Sort plugins by Required/Recommended type and by alphabetical listing within each type */
                        
$resort = array();
                        
$req = array();
                        
$rec = array();
                       
                        
/** Grab all the plugin types */
                        
foreach ( $table_data as $plugin )
                                
$resort[] = $plugin['type'];
                       
                        
/** Sort each plugin by type */
                        
foreach ( $resort as $type )
                                if ( 
'Required' == $type )
                                        
$req[] = $type;
                                else
                                        
$rec[] = $type;
                       
                        
/** Sort alphabetically each plugin type array, merge them and then sort in reverse     (lists Required plugins first) */      
                        
sort$req );
                        
sort$rec );
                        
array_merge$resort$req$rec );
                        
array_multisort$resortSORT_DESC$table_data );
 
                        return 
$table_data;
 
                }
 
                
/**
                 * Retrieve plugin data, given the plugin name. Taken from the
                 * TGM_Plugin_Activation class.
                 *
                 * Loops through the registered plugins looking for $name. If it finds it,
                 * it returns the $data from that plugin. Otherwise, returns false.
                 *
                 * @since 2.2.0
                 *
                 * @param string $name Name of the plugin, as it was registered
                 * @param string $data Optional. Array key of plugin data to return. Default is slug
                 * @return string|boolean Plugin slug if found, false otherwise
                 */
                
protected function _get_plugin_data_from_name$name$data 'slug' ) {
 
                        foreach ( 
TGM_Plugin_Activation::$instance->plugins as $plugin => $values ) {
                                if ( 
$name == $values['name'] && isset( $values[$data] ) )
                                        return 
$values[$data];
                        }
 
                        return 
false;
 
                }
 
                
/**
                 * Create default columns to display important plugin information
                 * like type, action and status.
                 *
                 * @since 2.2.0
                 *
                 * @param array $item
                 * @param string $column_name
                 */
                
public function column_default$item$column_name ) {
 
                        switch ( 
$column_name ) {
                                case 
'source':
                                case 
'type':
                                case 
'status':
                                        return 
$item[$column_name];
                        }
 
                }
 
                
/**
                 * Create default title column along with action links of 'Install'
                 * and 'Activate'.
                 *
                 * @since 2.2.0
                 *
                 * @param array $item
                 * @return string The action hover links
                 */
                
public function column_plugin$item ) {
 
                        
$installed_plugins get_plugins();
 
                        
/** No need to display any hover links */
                        
if ( is_plugin_active$item['file_path'] ) )
                                
$actions = array();
 
                        
/** We need to display the 'Install' hover link */
                        
if ( ! isset( $installed_plugins[$item['file_path']] ) ) {
                                
$actions = array(
                                        
'install' => sprintf(
                                                
'<a href="%1$s" title="Install %2$s">Install</a>',
                                                
wp_nonce_url(
                                                        
add_query_arg(
                                                                array(
                                                                        
'page'          => TGM_Plugin_Activation::$instance->menu,
                                                                        
'plugin'        => $item['slug'],
                                                                        
'plugin_name'   => $item['sanitized_plugin'],
                                                                        
'plugin_source' => $item['url'],
                                                                        
'tgmpa-install' => 'install-plugin',
                                                                ),
                                                                
admin_urlTGM_Plugin_Activation::$instance->parent_url_slug )
                                                        ),
                                                        
'tgmpa-install'
                                                
),
                                                
$item['sanitized_plugin']
                                        ),
                                );
                        }
                        
/** We need to display the 'Activate' hover link */
                        
elseif ( is_plugin_inactive$item['file_path'] ) ) {
                                
$actions = array(
                                        
'activate' => sprintf(
                                                
'<a href="%1$s" title="Activate %2$s">Activate</a>',
                                                
add_query_arg(
                                                        array(
                                                                
'page'                 => TGM_Plugin_Activation::$instance->menu,
                                                                
'plugin'               => $item['slug'],
                                                                
'plugin_name'          => $item['sanitized_plugin'],
                                                                
'plugin_source'        => $item['url'],
                                                                
'tgmpa-activate'       => 'activate-plugin',
                                                                
'tgmpa-activate-nonce' => wp_create_nonce'tgmpa-activate' ),
                                                        ),
                                                        
admin_urlTGM_Plugin_Activation::$instance->parent_url_slug )
                                                ),
                                                
$item['sanitized_plugin']
                                        ),
                                );
                        }
 
                        return 
sprintf'%1$s %2$s'$item['plugin'], $this->row_actions$actions ) );
 
                }
 
                
/**
                 * Required for bulk installing.
                 *
                 * Adds a checkbox for each plugin.
                 *
                 * @since 2.2.0
                 *
                 * @param array $item
                 * @return string The input checkbox with all necessary info
                 */
                
public function column_cb$item ) {
 
                        
$value $item['file_path'] . ',' $item['url'] . ',' $item['sanitized_plugin'];
                        return 
sprintf'<input type="checkbox" name="%1$s[]" value="%2$s" id="%3$s" />'$this->_args['singular'], $value$item['sanitized_plugin'] );
 
                }
 
                
/**
                 * Sets default message within the plugins table if no plugins
                 * are left for interaction.
                 *
                 * Hides the menu item to prevent the user from clicking and
                 * getting a permissions error.
                 *
                 * @since 2.2.0
                 */
                
public function no_items() {
 
                        
printf__'No plugins to install or activate. <a href="%1$s" title="Return to the Dashboard">Return to the Dashboard</a>'TGM_Plugin_Activation::$instance->domain ), admin_url() );
                        echo 
'<style type="text/css">#adminmenu .wp-submenu li.current { display: none !important; }</style>';
 
                }
 
                
/**
                 * Output all the column information within the table.
                 *
                 * @since 2.2.0
                 *
                 * @return array $columns The column names
                 */
                
public function get_columns() {
 
                        
$columns = array(
                                
'cb'     => '<input type="checkbox" />',
                                
'plugin' => __'Plugin'TGM_Plugin_Activation::$instance->domain ),
                                
'source' => __'Source'TGM_Plugin_Activation::$instance->domain ),
                                
'type'   => __'Type'TGM_Plugin_Activation::$instance->domain ),
                                
'status' => __'Status'TGM_Plugin_Activation::$instance->domain )
                        );
 
                        return 
$columns;
 
                }
 
                
/**
                 * Defines all types of bulk actions for handling
                 * registered plugins.
                 *
                 * @since 2.2.0
                 *
                 * @return array $actions The bulk actions for the plugin install table
                 */
                
public function get_bulk_actions() {
 
                        
$actions = array(
                                
'tgmpa-bulk-install'  => __'Install'TGM_Plugin_Activation::$instance->domain ),
                                
'tgmpa-bulk-activate' => __'Activate'TGM_Plugin_Activation::$instance->domain ),
                        );
 
                        return 
$actions;
 
                }
 
                
/**
                 * Processes bulk installation and activation actions.
                 *
                 * The bulk installation process looks either for the $_POST
                 * information or for the plugin info within the $_GET variable if
                 * a user has to use WP_Filesystem to enter their credentials.
                 *
                 * @since 2.2.0
                 */
                
public function process_bulk_actions() {
 
                        
/** Bulk installation process */
                        
if ( 'tgmpa-bulk-install' === $this->current_action() ) {
                                
check_admin_referer'bulk-' $this->_args['plural'] );
 
                                
/** Prep variables to be populated */
                                
$plugins_to_install = array();
                                
$plugin_installs    = array();
                                
$plugin_path        = array();
                                
$plugin_name        = array();
 
                                
/** Look first to see if information has been passed via WP_Filesystem */
                                
if ( isset( $_GET[sanitize_key'plugins' )] ) )
                                        
$plugins explode','stripslashes$_GET[sanitize_key'plugins' )] ) );
                                
/** Looks like the user can use the direct method, take from $_POST */
                                
elseif ( isset( $_POST[sanitize_key'plugin' )] ) )
                                        
$plugins = (array) $_POST[sanitize_key'plugin' )];
                                
/** Nothing has been submitted */
                                
else
                                        
$plugins = array();
 
                                
$a 0// Incremental variable
 
                                /** Grab information from $_POST if available */
                                
if ( isset( $_POST[sanitize_key'plugin' )] ) ) {
                                        foreach ( 
$plugins as $plugin_data )
                                                
$plugins_to_install[] = explode','$plugin_data );
 
                                        foreach ( 
$plugins_to_install as $plugin_data ) {
                                                
$plugin_installs[] = $plugin_data[0];
                                                
$plugin_path[]     = $plugin_data[1];
                                                
$plugin_name[]     = $plugin_data[2];
                                        }
                                }
                                
/** Information has been passed via $_GET */
                                
else {
                                        foreach ( 
$plugins as $key => $value ) {
                                                
/** Grab plugin slug for each plugin */
                                                
if ( == $key || == $key ) {
                                                        
$plugins_to_install[] = $value;
                                                        
$plugin_installs[]    = $value;
                                                }
                                                
$a++;
                                        }
                                }
 
                                
/** Look first to see if information has been passed via WP_Filesystem */
                                
if ( isset( $_GET[sanitize_key'plugin_paths' )] ) )
                                        
$plugin_paths explode','stripslashes$_GET[sanitize_key'plugin_paths' )] ) );
                                
/** Looks like the user doesn't need to enter his FTP creds */
                                
elseif ( isset( $_POST[sanitize_key'plugin' )] ) )
                                        
$plugin_paths = (array) $plugin_path;
                                
/** Nothing has been submitted */
                                
else
                                        
$plugin_paths = array();
 
                                
/** Look first to see if information has been passed via WP_Filesystem */
                                
if ( isset( $_GET[sanitize_key'plugin_names' )] ) )
                                        
$plugin_names explode','stripslashes$_GET[sanitize_key'plugin_names' )] ) );
                                
/** Looks like the user doesn't need to enter his FTP creds */
                                
elseif ( isset( $_POST[sanitize_key'plugin' )] ) )
                                        
$plugin_names = (array) $plugin_name;
                                
/** Nothing has been submitted */
                                
else
                                        
$plugin_names = array();
 
                                
$b 0// Incremental variable
 
                                /** Loop through plugin slugs and remove already installed plugins from the list */
                                
foreach ( $plugin_installs as $key => $plugin ) {
                                        if ( 
preg_match'|.php$|'$plugin ) ) {
                                                unset( 
$plugin_installs[$key] );
 
                                                
/** If the plugin path isn't in the $_GET variable, we can unset the corresponding path */
                                                
if ( ! isset( $_GET[sanitize_key'plugin_paths' )] ) )
                                                        unset( 
$plugin_paths[$b] );
 
                                                
/** If the plugin name isn't in the $_GET variable, we can unset the corresponding name */
                                                
if ( ! isset( $_GET[sanitize_key'plugin_names' )] ) )
                                                        unset( 
$plugin_names[$b] );
                                        }
                                        
$b++;
                                }
 
                                
/** No need to proceed further if we have no plugins to install */
                                
if ( empty( $plugin_installs ) )
                                        return 
false;
 
                                
/** Reset array indexes in case we removed already installed plugins */
                                
$plugin_installs array_values$plugin_installs );
                                
$plugin_paths    array_values$plugin_paths );
                                
$plugin_names    array_values$plugin_names );
 
                                
/** If we grabbed our plugin info from $_GET, we need to decode it for use */
                                
$plugin_installs array_map'urldecode'$plugin_installs );
                                
$plugin_paths    array_map'urldecode'$plugin_paths );
                                
$plugin_names    array_map'urldecode'$plugin_names );
 
                                
/** Pass all necessary information via URL if WP_Filesystem is needed */
                                
$url wp_nonce_url(
                                        
add_query_arg(
                                                array(
                                                        
'page'                  => TGM_Plugin_Activation::$instance->menu,
                                                        
'tgmpa-action'  => 'install-selected',
                                                        
'plugins'               => urlencodeimplode','$plugins ) ),
                                                        
'plugin_paths'  => urlencodeimplode','$plugin_paths ) ),
                                                        
'plugin_names'  => urlencodeimplode','$plugin_names ) ),
                                                ),
                                                
admin_urlTGM_Plugin_Activation::$instance->parent_url_slug )
                                        ),
                                        
'bulk-plugins'
                                
);
                                
$method ''// Leave blank so WP_Filesystem can populate it as necessary
                                
$fields = array( sanitize_key'action' ), sanitize_key'_wp_http_referer' ), sanitize_key'_wpnonce' ) ); // Extra fields to pass to WP_Filesystem
 
                                
if ( false === ( $creds request_filesystem_credentials$url$methodfalsefalse$fields ) ) )
                                        return 
true;
 
                                if ( ! 
WP_Filesystem$creds ) ) {
                                        
request_filesystem_credentials$url$methodtruefalse$fields ); // Setup WP_Filesystem
                                        
return true;
                                }
 
                                require_once 
ABSPATH 'wp-admin/includes/plugin-install.php'// Need for plugins_api
                                
require_once ABSPATH 'wp-admin/includes/class-wp-upgrader.php'// Need for upgrade classes
 
                                /** Store all information in arrays since we are processing a bulk installation */
                                
$api          = array();
                                
$sources      = array();
                                
$install_path = array();
 
                                
$c 0// Incremental variable
 
                                /** Loop through each plugin to install and try to grab information from WordPress API, if not create 'tgmpa-empty' scalar */
                                
foreach ( $plugin_installs as $plugin ) {
                                        
$api[$c] = plugins_api'plugin_information', array( 'slug' => $plugin'fields' => array( 'sections' => false ) ) ) ? plugins_api'plugin_information', array( 'slug' => $plugin'fields' => array( 'sections' => false ) ) ) : (object) $api[$c] = 'tgmpa-empty';
                                        
$c++;
                                }
 
                                if ( 
is_wp_error$api ) )
                                        
wp_dieTGM_Plugin_Activation::$instance->strings['oops'] . var_dump$api ) );
 
                                
$d 0// Incremental variable
 
                                /** Capture download links from $api or set install link to pre-packaged/private repo */
                                
foreach ( $api as $object ) {
                                        
$sources[$d] = isset( $object->download_link ) && 'repo' == $plugin_paths[$d] ? $object->download_link $plugin_paths[$d];
                                        
$d++;
                                }
 
                                
/** Finally, all the data is prepared to be sent to the installer */
                                
$url   add_query_arg( array( 'page' => TGM_Plugin_Activation::$instance->menu ), admin_urlTGM_Plugin_Activation::$instance->parent_url_slug ) );
                                
$nonce 'bulk-plugins';
                                
$names $plugin_names;
 
                                
/** Create a new instance of TGM_Bulk_Installer */
                                
$installer = new TGM_Bulk_Installer$skin = new TGM_Bulk_Installer_Skincompact'url''nonce''names' ) ) );
 
                                
/** Wrap the install process with the appropriate HTML */
                                
echo '<div class="tgmpa wrap">';
                                        
screen_iconapply_filters'tgmpa_default_screen_icon''themes' ) );
                                        echo 
'<h2>' esc_htmlget_admin_page_title() ) . '</h2>';
                                        
/** Process the bulk installation submissions */
                                        
$installer->bulk_install$sources );
                                echo 
'</div>';
 
                                return 
true;
                        }
 
                        
/** Bulk activation process */
                        
if ( 'tgmpa-bulk-activate' === $this->current_action() ) {
                                
check_admin_referer'bulk-' $this->_args['plural'] );
 
                                
/** Grab plugin data from $_POST */
                                
$plugins             = isset( $_POST[sanitize_key'plugin' )] ) ? (array) $_POST[sanitize_key'plugin' )] : array();
                                
$plugins_to_activate = array();
 
                                
/** Split plugin value into array with plugin file path, plugin source and plugin name */
                                
foreach ( $plugins as $i => $plugin )
                                        
$plugins_to_activate[] = explode','$plugin );
 
                                foreach ( 
$plugins_to_activate as $i => $array ) {
                                        if ( ! 
preg_match'|.php$|'$array[0] ) ) // Plugins that haven't been installed yet won't have the correct file path
                                                
unset( $plugins_to_activate[$i] );
                                }
 
                                
/** Return early if there are no plugins to activate */
                                
if ( empty( $plugins_to_activate ) )
                                        return;
 
                                
$plugins      = array();
                                
$plugin_names = array();
 
                                foreach ( 
$plugins_to_activate as $plugin_string ) {
                                        
$plugins[] = $plugin_string[0];
                                        
$plugin_names[] = $plugin_string[2];
                                }
 
                                
$count count$plugin_names ); // Count so we can use _n function
                                
$last_plugin array_pop$plugin_names ); // Pop off last name to prep for readability
                                
$imploded    = empty( $plugin_names ) ? '<strong>' $last_plugin '</strong>' '<strong>' . ( implode', '$plugin_names ) . '</strong> and <strong>' $last_plugin '</strong>.' );
 
                                
/** Now we are good to go - let's start activating plugins */
                                
$activate activate_plugins$plugins );
 
                                if ( 
is_wp_error$activate ) )
                                        echo 
'<div id="message" class="error"><p>' $activate->get_error_message() . '</p></div>';
                                else
                                        
printf'<div id="message" class="updated"><p>%1$s %2$s</p></div>'_n'The following plugin was activated successfully:''The following plugins were activated successfully:'$countTGM_Plugin_Activation::$instance->domain ), $imploded );
 
                                
/** Update recently activated plugins option */
                                
$recent = (array) get_option'recently_activated' );
 
                                foreach ( 
$plugins as $plugin => $time )
                                        if ( isset( 
$recent[$plugin] ) )
                                                unset( 
$recent[$plugin] );
 
                                
update_option'recently_activated'$recent );
 
                                unset( 
$_POST ); // Reset the $_POST variable in case user wants to perform one action after another
                        
}
                }
 
                
/**
                 * Prepares all of our information to be outputted into a usable table.
                 *
                 * @since 2.2.0
                 */
                
public function prepare_items() {
 
                        
$per_page              100// Set it high so we shouldn't have to worry about pagination
                        
$columns               $this->get_columns(); // Get all necessary column information
                        
$hidden                = array(); // No columns to hide, but we must set as an array
                        
$sortable              = array(); // No reason to make sortable columns
                        
$this->_column_headers = array( $columns$hidden$sortable ); // Get all necessary column headers
 
                        /** Process our bulk actions here */
                        
$this->process_bulk_actions();
 
                        
/** Store all of our plugin data into $items array so WP_List_Table can use it */
                        
$this->items $this->_gather_plugin_data();
 
                }
 
        }
}
 
/**
 * The WP_Upgrader file isn't always available. If it isn't available,
 * we load it here.
 *
 * We check to make sure no action or activation keys are set so that WordPress
 * doesn't try to re-include the class when processing upgrades or installs outside
 * of the class.
 *
 * @since 2.2.0
 */
if ( ! class_exists'WP_Upgrader' ) && ( isset( $_GET[sanitize_key'page' )] ) && TGM_Plugin_Activation::$instance->menu $_GET[sanitize_key'page' )] ) ) {
        require_once 
ABSPATH 'wp-admin/includes/class-wp-upgrader.php';
 
        if ( ! 
class_exists'TGM_Bulk_Installer' ) ) {
                
/**
                 * Installer class to handle bulk plugin installations.
                 *
                 * Extends WP_Upgrader and customizes to suit the installation of multiple
                 * plugins.
                 *
                 * @since 2.2.0
                 *
                 * @package TGM-Plugin-Activation
                 * @author Thomas Griffin <thomas@thomasgriffinmedia.com>
                 * @author Gary Jones <gamajo@gamajo.com>
                 */
                
class TGM_Bulk_Installer extends WP_Upgrader {
 
                        
/**
                         * Holds result of bulk plugin installation.
                         *
                         * @since 2.2.0
                         *
                         * @var string
                         */
                        
public $result;
 
                        
/**
                         * Flag to check if bulk installation is occurring or not.
                         *
                         * @since 2.2.0
                         *
                         * @var boolean
                         */
                        
public $bulk false;
 
                        
/**
                         * Processes the bulk installation of plugins.
                         *
                         * @since 2.2.0
                         *
                         * @param array $packages The plugin sources needed for installation
                         * @return string|boolean Install confirmation messages on success, false on failure
                         */
                        
public function bulk_install$packages ) {
 
                                
/** Pass installer skin object and set bulk property to true */
                                
$this->init();
                                
$this->bulk true;
 
                                
/** Set install strings and automatic activation strings (if config option is set to true) */
                                
$this->install_strings();
                                if ( 
TGM_Plugin_Activation::$instance->is_automatic )
                                        
$this->activate_strings();
 
                                
/** Run the header string to notify user that the process has begun */
                                
$this->skin->header();
 
                                
/** Connect to the Filesystem */
                                
$res $this->fs_connect( array( WP_CONTENT_DIRWP_PLUGIN_DIR ) );
                                if ( ! 
$res ) {
                                        
$this->skin->footer();
                                        return 
false;
                                }
 
                                
/** Set the bulk header and prepare results array */
                                
$this->skin->bulk_header();
                                
$results = array();
 
                                
/** Get the total number of packages being processed and iterate as each package is successfully installed */
                                
$this->update_count   count$packages );
                                
$this->update_current 0;
 
                                
/** Loop through each plugin and process the installation */
                                
foreach ( $packages as $plugin ) {
                                        
$this->update_current++; // Increment counter
 
                                        /** Do the plugin install */
                                        
$result $this->run(
                                                array(
                                                        
'package'           => $plugin// The plugin source
                                                        
'destination'       => WP_PLUGIN_DIR// The destination dir
                                                        
'clear_destination' => false// Do we want to clear the destination or not?
                                                        
'clear_working'     => true// Remove original install file
                                                        
'is_multi'          => true// Are we processing multiple installs?
                                                        
'hook_extra'        => array( 'plugin' => $plugin, ), // Pass plugin source as extra data
                                                
)
                                        );
 
                                        
/** Store installation results in result property */
                                        
$results[$plugin] = $this->result;
 
                                        
/** Prevent credentials auth screen from displaying multiple times */
                                        
if ( false === $result )
                                                break;
                                }
 
                                
/** Pass footer skin strings */
                                
$this->skin->bulk_footer();
                                
$this->skin->footer();
 
                                
/** Return our results */
                                
return $results;
 
                        }
 
                        
/**
                         * Performs the actual installation of each plugin.
                         *
                         * This method also activates the plugin in the automatic flag has been
                         * set to true for the TGMPA class.
                         *
                         * @since 2.2.0
                         *
                         * @param array $options The installation cofig options
                         * @return null/array Return early if error, array of installation data on success
                         */
                        
public function run$options ) {
 
                                
/** Default config options */
                                
$defaults = array(
                                        
'package'           => '',
                                        
'destination'       => '',
                                        
'clear_destination' => false,
                                        
'clear_working'     => true,
                                        
'is_multi'          => false,
                                        
'hook_extra'        => array(),
                                );
 
                                
/** Parse default options with config options from $this->bulk_upgrade and extract them */
                                
$options wp_parse_args$options$defaults );
                                
extract$options );
 
                                
/** Connect to the Filesystem */
                                
$res $this->fs_connect( array( WP_CONTENT_DIR$destination ) );
                                if ( ! 
$res )
                                        return 
false;
 
                                
/** Return early if there is an error connecting to the Filesystem */
                                
if ( is_wp_error$res ) ) {
                                        
$this->skin->error$res );
                                        return 
$res;
                                }
 
                                
/** Call $this->header separately if running multiple times */
                                
if ( ! $is_multi )
                                        
$this->skin->header();
 
                                
/** Set strings before the package is installed */
                                
$this->skin->before();
 
                                
/** Download the package (this just returns the filename of the file if the package is a local file) */
                                
$download $this->download_package$package );
                                if ( 
is_wp_error$download ) ) {
                                        
$this->skin->error$download );
                                        
$this->skin->after();
                                        return 
$download;
                                }
 
                                
/** Don't accidentally delete a local file */
                                
$delete_package = ( $download != $package );
 
                                
/** Unzip file into a temporary working directory */
                                
$working_dir $this->unpack_package$download$delete_package );
                                if ( 
is_wp_error$working_dir ) ) {
                                        
$this->skin->error$working_dir );
                                        
$this->skin->after();
                                        return 
$working_dir;
                                }
 
                                
/** Install the package into the working directory with all passed config options */
                                
$result $this->install_package(
                                        array(
                                                
'source'            => $working_dir,
                                                
'destination'       => $destination,
                                                
'clear_destination' => $clear_destination,
                                                
'clear_working'     => $clear_working,
                                                
'hook_extra'        => $hook_extra,
                                        )
                                );
 
                                
/** Pass the result of the installation */
                                
$this->skin->set_result$result );
 
                                
/** Set correct strings based on results */
                                
if ( is_wp_error$result ) ) {
                                        
$this->skin->error$result );
                                        
$this->skin->feedback'process_failed' );
                                }
                                
/** The plugin install is successful */
                                
else {
                                        
$this->skin->feedback'process_success' );
                                }
 
                                
/** Only process the activation of installed plugins if the automatic flag is set to true */
                                
if ( TGM_Plugin_Activation::$instance->is_automatic ) {
                                        
/** Flush plugins cache so we can make sure that the installed plugins list is always up to date */
                                        
wp_cache_flush();
 
                                        
/** Get the installed plugin file and activate it */
                                        
$plugin_info $this->plugin_info$package );
                                        
$activate    activate_plugin$plugin_info );
 
                                        
/** Re-populate the file path now that the plugin has been installed and activated */
                                        
TGM_Plugin_Activation::$instance->populate_file_path();
 
                                        
/** Set correct strings based on results */
                                        
if ( is_wp_error$activate ) ) {
                                                
$this->skin->error$activate );
                                                
$this->skin->feedback'activation_failed' );
                                        }
                                        
/** The plugin activation is successful */
                                        
else {
                                                
$this->skin->feedback'activation_success' );
                                        }
                                }
 
                                
/** Flush plugins cache so we can make sure that the installed plugins list is always up to date */
                                
wp_cache_flush();
 
                                
/** Set install footer strings */
                                
$this->skin->after();
                                if ( ! 
$is_multi )
                                        
$this->skin->footer();
 
                                return 
$result;
 
                        }
 
                        
/**
                         * Sets the correct install strings for the installer skin to use.
                         *
                         * @since 2.2.0
                         */
                        
public function install_strings() {
 
                                
$this->strings['no_package']          = __'Install package not available.'TGM_Plugin_Activation::$instance->domain );
                                
$this->strings['downloading_package'] = __'Downloading install package from <span class="code">%s</span>&#8230;'TGM_Plugin_Activation::$instance->domain );
                                
$this->strings['unpack_package']      = __'Unpacking the package&#8230;'TGM_Plugin_Activation::$instance->domain );
                                
$this->strings['installing_package']  = __'Installing the plugin&#8230;'TGM_Plugin_Activation::$instance->domain );
                                
$this->strings['process_failed']      = __'Plugin install failed.'TGM_Plugin_Activation::$instance->domain );
                                
$this->strings['process_success']     = __'Plugin installed successfully.'TGM_Plugin_Activation::$instance->domain );
 
                        }
 
                        
/**
                         * Sets the correct activation strings for the installer skin to use.
                         *
                         * @since 2.2.0
                         */
                        
public function activate_strings() {
 
                                
$this->strings['activation_failed']  = __'Plugin activation failed.'TGM_Plugin_Activation::$instance->domain );
                                
$this->strings['activation_success'] = __'Plugin activated successfully.'TGM_Plugin_Activation::$instance->domain );
 
                        }
 
                        
/**
                         * Grabs the plugin file from an installed plugin.
                         *
                         * @since 2.2.0
                         *
                         * @return string|boolean Return plugin file on success, false on failure
                         */
                        
public function plugin_info() {
 
                                
/** Return false if installation result isn't an array or the destination name isn't set */
                                
if ( ! is_array$this->result ) )
                                        return 
false;
                                if ( empty( 
$this->result['destination_name'] ) )
                                        return 
false;
 
                                
/** Get the installed plugin file or return false if it isn't set */
                                
$plugin get_plugins'/' $this->result['destination_name'] );
                                if ( empty( 
$plugin ) )
                                        return 
false;
 
                                
/** Assume the requested plugin is the first in the list */
                                
$pluginfiles array_keys$plugin );
 
                                return 
$this->result['destination_name'] . '/' $pluginfiles[0];
 
                        }
 
                }
        }
 
        if ( ! 
class_exists'TGM_Bulk_Installer_Skin' ) ) {
                
/**
                 * Installer skin to set strings for the bulk plugin installations..
                 *
                 * Extends Bulk_Upgrader_Skin and customizes to suit the installation of multiple
                 * plugins.
                 *
                 * @since 2.2.0
                 *
                 * @package TGM-Plugin-Activation
                 * @author Thomas Griffin <thomas@thomasgriffinmedia.com>
                 * @author Gary Jones <gamajo@gamajo.com>
                 */
                
class TGM_Bulk_Installer_Skin extends Bulk_Upgrader_Skin {
 
                        
/**
                         * Holds plugin info for each individual plugin installation.
                         *
                         * @since 2.2.0
                         *
                         * @var array
                         */
                        
public $plugin_info = array();
 
                        
/**
                         * Holds names of plugins that are undergoing bulk installations.
                         *
                         * @since 2.2.0
                         *
                         * @var array
                         */
                        
public $plugin_names = array();
 
                        
/**
                         * Integer to use for iteration through each plugin installation.
                         *
                         * @since 2.2.0
                         *
                         * @var integer
                         */
                        
public $i 0;
 
                        
/**
                         * Constructor. Parses default args with new ones and extracts them for use.
                         *
                         * @since 2.2.0
                         *
                         * @param array $args Arguments to pass for use within the class
                         */
                        
public function __construct$args = array() ) {
 
                                
/** Parse default and new args */
                                
$defaults = array( 'url' => '''nonce' => '''names' => array() );
                                
$args wp_parse_args$args$defaults );
 
                                
/** Set plugin names to $this->plugin_names property */
                                
$this->plugin_names $args['names'];
 
                                
/** Extract the new args */
                                
parent::__construct$args );
 
                        }
 
                        
/**
                         * Sets install skin strings for each individual plugin.
                         *
                         * Checks to see if the automatic activation flag is set and uses the
                         * the proper strings accordingly.
                         *
                         * @since 2.2.0
                         */
                        
public function add_strings() {
 
                                
/** Automatic activation strings */
                                
if ( TGM_Plugin_Activation::$instance->is_automatic ) {
                                        
$this->upgrader->strings['skin_upgrade_start']        = __'The installation and activation process is starting. This process may take a while on some hosts, so please be patient.'TGM_Plugin_Activation::$instance->domain );
                                        
$this->upgrader->strings['skin_update_successful']    = __'%1$s installed and activated successfully.'TGM_Plugin_Activation::$instance->domain ) . ' <a onclick="%2$s" href="#" class="hide-if-no-js"><span>' __'Show Details'TGM_Plugin_Activation::$instance->domain ) . '</span><span class="hidden">' __'Hide Details'TGM_Plugin_Activation::$instance->domain ) . '</span>.</a>';
                                        
$this->upgrader->strings['skin_upgrade_end']          = __'All installations and activations have been completed.'TGM_Plugin_Activation::$instance->domain );
                                        
$this->upgrader->strings['skin_before_update_header'] = __'Installing and Activating Plugin %1$s (%2$d/%3$d)'TGM_Plugin_Activation::$instance->domain );
                                }
                                
/** Default installation strings */
                                
else {
                                        
$this->upgrader->strings['skin_upgrade_start']        = __'The installation process is starting. This process may take a while on some hosts, so please be patient.'TGM_Plugin_Activation::$instance->domain );
                                        
$this->upgrader->strings['skin_update_failed_error']  = __'An error occurred while installing %1$s: <strong>%2$s</strong>.'TGM_Plugin_Activation::$instance->domain );
                                        
$this->upgrader->strings['skin_update_failed']        = __'The installation of %1$s failed.'TGM_Plugin_Activation::$instance->domain );
                                        
$this->upgrader->strings['skin_update_successful']    = __'%1$s installed successfully.'TGM_Plugin_Activation::$instance->domain ) . ' <a onclick="%2$s" href="#" class="hide-if-no-js"><span>' __'Show Details'TGM_Plugin_Activation::$instance->domain ) . '</span><span class="hidden">' __'Hide Details'TGM_Plugin_Activation::$instance->domain ) . '</span>.</a>';
                                        
$this->upgrader->strings['skin_upgrade_end']          = __'All installations have been completed.'TGM_Plugin_Activation::$instance->domain );
                                        
$this->upgrader->strings['skin_before_update_header'] = __'Installing Plugin %1$s (%2$d/%3$d)'TGM_Plugin_Activation::$instance->domain );
                                }
 
                        }
 
                        
/**
                         * Outputs the header strings and necessary JS before each plugin installation.
                         *
                         * @since 2.2.0
                         */
                        
public function before($title '') {
 
                                
/** We are currently in the plugin installation loop, so set to true */
                                
$this->in_loop true;
 
                                
printf'<h4>' $this->upgrader->strings['skin_before_update_header'] . ' <img alt="" src="' admin_url'images/wpspin_light.gif' ) . '" class="hidden waiting-' $this->upgrader->update_current '" style="vertical-align:middle;" /></h4>'$this->plugin_names[$this->i], $this->upgrader->update_current$this->upgrader->update_count );
                                echo 
'<script type="text/javascript">jQuery(\'.waiting-' esc_js$this->upgrader->update_current ) . '\').show();</script>';
                                echo 
'<div class="update-messages hide-if-js" id="progress-' esc_attr$this->upgrader->update_current ) . '"><p>';
 
                                
/** Flush header output buffer */
                                
$this->before_flush_output();
 
                        }
 
                        
/**
                         * Outputs the footer strings and necessary JS after each plugin installation.
                         *
                         * Checks for any errors and outputs them if they exist, else output
                         * success strings.
                         *
                         * @since 2.2.0
                         */
                        
public function after($title '') {
 
                                
/** Close install strings */
                                
echo '</p></div>';
 
                                
/** Output error strings if an error has occurred */
                                
if ( $this->error || ! $this->result ) {
                                        if ( 
$this->error )
                                                echo 
'<div class="error"><p>' sprintf$this->upgrader->strings['skin_update_failed_error'], $this->plugin_names[$this->i], $this->error ) . '</p></div>';
                                        else
                                                echo 
'<div class="error"><p>' sprintf$this->upgrader->strings['skin_update_failed'], $this->plugin_names[$this->i] ) . '</p></div>';
 
                                        echo 
'<script type="text/javascript">jQuery(\'#progress-' esc_js$this->upgrader->update_current ) . '\').show();</script>';
                                }
 
                                
/** If the result is set and there are no errors, success! */
                                
if ( ! empty( $this->result ) && ! is_wp_error$this->result ) ) {
                                        echo 
'<div class="updated"><p>' sprintf$this->upgrader->strings['skin_update_successful'], $this->plugin_names[$this->i], 'jQuery(\'#progress-' esc_js$this->upgrader->update_current ) . '\').toggle();jQuery(\'span\', this).toggle(); return false;' ) . '</p></div>';
                                        echo 
'<script type="text/javascript">jQuery(\'.waiting-' esc_js$this->upgrader->update_current ) . '\').hide();</script>';
                                }
 
                                
/** Set in_loop and error to false and flush footer output buffer */
                                
$this->reset();
                                
$this->after_flush_output();
 
                        }
 
                        
/**
                         * Outputs links after bulk plugin installation is complete.
                         *
                         * @since 2.2.0
                         */
                        
public function bulk_footer() {
 
                                
/** Serve up the string to say installations (and possibly activations) are complete */
                                
parent::bulk_footer();
 
                                
/** Flush plugins cache so we can make sure that the installed plugins list is always up to date */
                                
wp_cache_flush();
 
                                
/** Display message based on if all plugins are now active or not */
                                
$complete = array();
                                foreach ( 
TGM_Plugin_Activation::$instance->plugins as $plugin ) {
                                        if ( ! 
is_plugin_active$plugin['file_path'] ) ) {
                                                echo 
'<p><a href="' add_query_arg'page'TGM_Plugin_Activation::$instance->menuadmin_urlTGM_Plugin_Activation::$instance->parent_url_slug ) ) . '" title="' esc_attrTGM_Plugin_Activation::$instance->strings['return'] ) . '" target="_parent">' __TGM_Plugin_Activation::$instance->strings['return'], TGM_Plugin_Activation::$instance->domain ) . '</a></p>';
                                                
$complete[] = $plugin;
                                                break;
                                        }
                                        
/** Nothing to store */
                                        
else {
                                                
$complete[] = '';
                                        }
                                }
 
                                
/** Filter out any empty entries */
                                
$complete array_filter$complete );
 
                                
/** All plugins are active, so we display the complete string and hide the menu to protect users */
                                
if ( empty( $complete ) ) {
                                        echo 
'<p>' .  sprintfTGM_Plugin_Activation::$instance->strings['complete'], '<a href="' admin_url() . '" title="' __'Return to the Dashboard'TGM_Plugin_Activation::$instance->domain ) . '">' __'Return to the Dashboard'TGM_Plugin_Activation::$instance->domain ) . '</a>' ) . '</p>';
                                        echo 
'<style type="text/css">#adminmenu .wp-submenu li.current { display: none !important; }</style>';
                                }
 
                        }
 
                        
/**
                         * Flush header output buffer.
                         *
                         * @since 2.2.0
                         */
                        
public function before_flush_output() {
 
                                
wp_ob_end_flush_all();
                                
flush();
 
                        }
 
                        
/**
                         * Flush footer output buffer and iterate $this->i to make sure the
                         * installation strings reference the correct plugin.
                         *
                         * @since 2.2.0
                         */
                        
public function after_flush_output() {
 
                                
wp_ob_end_flush_all();
                                
flush();
                                
$this->i++;
 
                        }
 
                }
        }
}