Completed
Push — develop ( ec6a3f...13c68e )
by Gary
10s
created
class-tgm-plugin-activation.php 3 patches
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -949,7 +949,8 @@  discard block
 block discarded – undo
949 949
 					if ( ! $automatic ) {
950 950
 						// Make sure message doesn't display again if bulk activation is performed
951 951
 						// immediately after a single activation.
952
-						if ( ! isset( $_POST['action'] ) ) { // WPCS: CSRF OK.
952
+						if ( ! isset( $_POST['action'] ) ) {
953
+// WPCS: CSRF OK.
953 954
 							echo '<div id="message" class="updated"><p>', esc_html( $this->strings['activated_successfully'] ), ' <strong>', esc_html( $this->plugins[ $slug ]['name'] ), '.</strong></p></div>';
954 955
 						}
955 956
 					} else {
@@ -970,7 +971,8 @@  discard block
 block discarded – undo
970 971
 				if ( ! $automatic ) {
971 972
 					// Make sure message doesn't display again if bulk activation is performed
972 973
 					// immediately after a single activation.
973
-					if ( ! isset( $_POST['action'] ) ) { // WPCS: CSRF OK.
974
+					if ( ! isset( $_POST['action'] ) ) {
975
+// WPCS: CSRF OK.
974 976
 						echo '<div id="message" class="error"><p>',
975 977
 							sprintf(
976 978
 								esc_html( $this->strings['plugin_needs_higher_version'] ),
@@ -1621,10 +1623,12 @@  discard block
 block discarded – undo
1621 1623
 			if ( 'update-core' === $screen->base ) {
1622 1624
 				// Core update screen.
1623 1625
 				return true;
1624
-			} elseif ( 'plugins' === $screen->base && ! empty( $_POST['action'] ) ) { // WPCS: CSRF ok.
1626
+			} elseif ( 'plugins' === $screen->base && ! empty( $_POST['action'] ) ) {
1627
+// WPCS: CSRF ok.
1625 1628
 				// Plugins bulk update screen.
1626 1629
 				return true;
1627
-			} elseif ( 'update' === $screen->base && ! empty( $_POST['action'] ) ) { // WPCS: CSRF ok.
1630
+			} elseif ( 'update' === $screen->base && ! empty( $_POST['action'] ) ) {
1631
+// WPCS: CSRF ok.
1628 1632
 				// Individual updates (ajax call).
1629 1633
 				return true;
1630 1634
 			}
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2226,7 +2226,7 @@
 block discarded – undo
2226 2226
 		 *
2227 2227
 		 * @since 2.5.0
2228 2228
 		 *
2229
-		 * @return array CSS classnames.
2229
+		 * @return string[] CSS classnames.
2230 2230
 		 */
2231 2231
 		public function get_table_classes() {
2232 2232
 			return array( 'widefat', 'fixed' );
Please login to merge, or discard this patch.
Spacing   +118 added lines, -118 removed lines patch added patch discarded remove patch
@@ -704,11 +704,11 @@  discard block
 block discarded – undo
704 704
 			$args = apply_filters(
705 705
 				'tgmpa_admin_menu_args',
706 706
 				array(
707
-					'parent_slug' => $this->parent_slug,                     // Parent Menu slug.
708
-					'page_title'  => $this->strings['page_title'],           // Page title.
709
-					'menu_title'  => $this->strings['menu_title'],           // Menu title.
710
-					'capability'  => $this->capability,                      // Capability.
711
-					'menu_slug'   => $this->menu,                            // Menu slug.
707
+					'parent_slug' => $this->parent_slug, // Parent Menu slug.
708
+					'page_title'  => $this->strings['page_title'], // Page title.
709
+					'menu_title'  => $this->strings['menu_title'], // Menu title.
710
+					'capability'  => $this->capability, // Capability.
711
+					'menu_slug'   => $this->menu, // Menu slug.
712 712
 					'function'    => array( $this, 'install_plugins_page' ), // Callback.
713 713
 				)
714 714
 			);
@@ -810,7 +810,7 @@  discard block
 block discarded – undo
810 810
 			// All plugin information will be stored in an array for processing.
811 811
 			$slug = $this->sanitize_key( urldecode( $_GET['plugin'] ) );
812 812
 
813
-			if ( ! isset( $this->plugins[ $slug ] ) ) {
813
+			if ( ! isset( $this->plugins[$slug] ) ) {
814 814
 				return false;
815 815
 			}
816 816
 
@@ -855,7 +855,7 @@  discard block
 block discarded – undo
855 855
 				$extra         = array();
856 856
 				$extra['slug'] = $slug; // Needed for potentially renaming of directory name.
857 857
 				$source        = $this->get_download_url( $slug );
858
-				$api           = ( 'repo' === $this->plugins[ $slug ]['source_type'] ) ? $this->get_plugins_api( $slug ) : null;
858
+				$api           = ( 'repo' === $this->plugins[$slug]['source_type'] ) ? $this->get_plugins_api( $slug ) : null;
859 859
 				$api           = ( false !== $api ) ? $api : null;
860 860
 
861 861
 				$url = add_query_arg(
@@ -872,8 +872,8 @@  discard block
 block discarded – undo
872 872
 
873 873
 				$title     = ( 'update' === $install_type ) ? $this->strings['updating'] : $this->strings['installing'];
874 874
 				$skin_args = array(
875
-					'type'   => ( 'bundled' !== $this->plugins[ $slug ]['source_type'] ) ? 'web' : 'upload',
876
-					'title'  => sprintf( $title, $this->plugins[ $slug ]['name'] ),
875
+					'type'   => ( 'bundled' !== $this->plugins[$slug]['source_type'] ) ? 'web' : 'upload',
876
+					'title'  => sprintf( $title, $this->plugins[$slug]['name'] ),
877 877
 					'url'    => esc_url_raw( $url ),
878 878
 					'nonce'  => $install_type . '-plugin_' . $slug,
879 879
 					'plugin' => '',
@@ -883,7 +883,7 @@  discard block
 block discarded – undo
883 883
 				unset( $title );
884 884
 
885 885
 				if ( 'update' === $install_type ) {
886
-					$skin_args['plugin'] = $this->plugins[ $slug ]['file_path'];
886
+					$skin_args['plugin'] = $this->plugins[$slug]['file_path'];
887 887
 					$skin                = new Plugin_Upgrader_Skin( $skin_args );
888 888
 				} else {
889 889
 					$skin = new Plugin_Installer_Skin( $skin_args );
@@ -898,12 +898,12 @@  discard block
 block discarded – undo
898 898
 				if ( 'update' === $install_type ) {
899 899
 					// Inject our info into the update transient.
900 900
 					$to_inject                    = array(
901
-						$slug => $this->plugins[ $slug ],
901
+						$slug => $this->plugins[$slug],
902 902
 					);
903
-					$to_inject[ $slug ]['source'] = $source;
903
+					$to_inject[$slug]['source'] = $source;
904 904
 					$this->inject_update_info( $to_inject );
905 905
 
906
-					$upgrader->upgrade( $this->plugins[ $slug ]['file_path'] );
906
+					$upgrader->upgrade( $this->plugins[$slug]['file_path'] );
907 907
 				} else {
908 908
 					$upgrader->install( $source );
909 909
 				}
@@ -933,11 +933,11 @@  discard block
 block discarded – undo
933 933
 				}
934 934
 
935 935
 				return true;
936
-			} elseif ( isset( $this->plugins[ $slug ]['file_path'], $_GET['tgmpa-activate'] ) && 'activate-plugin' === $_GET['tgmpa-activate'] ) {
936
+			} elseif ( isset( $this->plugins[$slug]['file_path'], $_GET['tgmpa-activate'] ) && 'activate-plugin' === $_GET['tgmpa-activate'] ) {
937 937
 				// Activate action link was clicked.
938 938
 				check_admin_referer( 'tgmpa-activate', 'tgmpa-nonce' );
939 939
 
940
-				if ( false === $this->activate_single_plugin( $this->plugins[ $slug ]['file_path'], $slug ) ) {
940
+				if ( false === $this->activate_single_plugin( $this->plugins[$slug]['file_path'], $slug ) ) {
941 941
 					return true; // Finish execution of the function early as we encountered an error.
942 942
 				}
943 943
 			}
@@ -962,17 +962,17 @@  discard block
 block discarded – undo
962 962
 			foreach ( $plugins as $slug => $plugin ) {
963 963
 				$file_path = $plugin['file_path'];
964 964
 
965
-				if ( empty( $repo_updates->response[ $file_path ] ) ) {
966
-					$repo_updates->response[ $file_path ] = new stdClass();
965
+				if ( empty( $repo_updates->response[$file_path] ) ) {
966
+					$repo_updates->response[$file_path] = new stdClass();
967 967
 				}
968 968
 
969 969
 				// We only really need to set package, but let's do all we can in case WP changes something.
970
-				$repo_updates->response[ $file_path ]->slug        = $slug;
971
-				$repo_updates->response[ $file_path ]->plugin      = $file_path;
972
-				$repo_updates->response[ $file_path ]->new_version = $plugin['version'];
973
-				$repo_updates->response[ $file_path ]->package     = $plugin['source'];
974
-				if ( empty( $repo_updates->response[ $file_path ]->url ) && ! empty( $plugin['external_url'] ) ) {
975
-					$repo_updates->response[ $file_path ]->url = $plugin['external_url'];
970
+				$repo_updates->response[$file_path]->slug        = $slug;
971
+				$repo_updates->response[$file_path]->plugin      = $file_path;
972
+				$repo_updates->response[$file_path]->new_version = $plugin['version'];
973
+				$repo_updates->response[$file_path]->package     = $plugin['source'];
974
+				if ( empty( $repo_updates->response[$file_path]->url ) && ! empty( $plugin['external_url'] ) ) {
975
+					$repo_updates->response[$file_path]->url = $plugin['external_url'];
976 976
 				}
977 977
 			}
978 978
 
@@ -1015,7 +1015,7 @@  discard block
 block discarded – undo
1015 1015
 			} else {
1016 1016
 				// Bulk installer contains less info, so fall back on the info registered here.
1017 1017
 				foreach ( $this->plugins as $slug => $plugin ) {
1018
-					if ( ! empty( $upgrader->skin->plugin_names[ $upgrader->skin->i ] ) && $plugin['name'] === $upgrader->skin->plugin_names[ $upgrader->skin->i ] ) {
1018
+					if ( ! empty( $upgrader->skin->plugin_names[$upgrader->skin->i] ) && $plugin['name'] === $upgrader->skin->plugin_names[$upgrader->skin->i] ) {
1019 1019
 						$desired_slug = $slug;
1020 1020
 						break;
1021 1021
 					}
@@ -1082,7 +1082,7 @@  discard block
 block discarded – undo
1082 1082
 						// Make sure message doesn't display again if bulk activation is performed
1083 1083
 						// immediately after a single activation.
1084 1084
 						if ( ! isset( $_POST['action'] ) ) { // WPCS: CSRF OK.
1085
-							echo '<div id="message" class="updated"><p>', esc_html( $this->strings['activated_successfully'] ), ' <strong>', esc_html( $this->plugins[ $slug ]['name'] ), '.</strong></p></div>';
1085
+							echo '<div id="message" class="updated"><p>', esc_html( $this->strings['activated_successfully'] ), ' <strong>', esc_html( $this->plugins[$slug]['name'] ), '.</strong></p></div>';
1086 1086
 						}
1087 1087
 					} else {
1088 1088
 						// Simpler message layout for use on the plugin install page.
@@ -1095,7 +1095,7 @@  discard block
 block discarded – undo
1095 1095
 				echo '<div id="message" class="error"><p>',
1096 1096
 					sprintf(
1097 1097
 						esc_html( $this->strings['plugin_already_active'] ),
1098
-						'<strong>' . esc_html( $this->plugins[ $slug ]['name'] ) . '</strong>'
1098
+						'<strong>' . esc_html( $this->plugins[$slug]['name'] ) . '</strong>'
1099 1099
 					),
1100 1100
 					'</p></div>';
1101 1101
 			} elseif ( $this->does_plugin_require_update( $slug ) ) {
@@ -1106,13 +1106,13 @@  discard block
 block discarded – undo
1106 1106
 						echo '<div id="message" class="error"><p>',
1107 1107
 							sprintf(
1108 1108
 								esc_html( $this->strings['plugin_needs_higher_version'] ),
1109
-								'<strong>' . esc_html( $this->plugins[ $slug ]['name'] ) . '</strong>'
1109
+								'<strong>' . esc_html( $this->plugins[$slug]['name'] ) . '</strong>'
1110 1110
 							),
1111 1111
 							'</p></div>';
1112 1112
 					}
1113 1113
 				} else {
1114 1114
 					// Simpler message layout for use on the plugin install page.
1115
-					echo '<p>', sprintf( esc_html( $this->strings['plugin_needs_higher_version'] ), esc_html( $this->plugins[ $slug ]['name'] ) ), '</p>';
1115
+					echo '<p>', sprintf( esc_html( $this->strings['plugin_needs_higher_version'] ), esc_html( $this->plugins[$slug]['name'] ) ), '</p>';
1116 1116
 				}
1117 1117
 			}
1118 1118
 
@@ -1239,7 +1239,7 @@  discard block
 block discarded – undo
1239 1239
 						$rendered .= sprintf(
1240 1240
 							$line_template,
1241 1241
 							sprintf(
1242
-								translate_nooped_plural( $this->strings[ $type ], $count, 'tgmpa' ),
1242
+								translate_nooped_plural( $this->strings[$type], $count, 'tgmpa' ),
1243 1243
 								$imploded,
1244 1244
 								$count
1245 1245
 							)
@@ -1356,7 +1356,7 @@  discard block
 block discarded – undo
1356 1356
 
1357 1357
 			foreach ( (array) $wp_settings_errors as $key => $details ) {
1358 1358
 				if ( 'tgmpa' === $details['setting'] ) {
1359
-					unset( $wp_settings_errors[ $key ] );
1359
+					unset( $wp_settings_errors[$key] );
1360 1360
 					break;
1361 1361
 				}
1362 1362
 			}
@@ -1392,20 +1392,20 @@  discard block
 block discarded – undo
1392 1392
 				return;
1393 1393
 			}
1394 1394
 
1395
-			if ( empty( $plugin['slug'] ) || ! is_string( $plugin['slug'] ) || isset( $this->plugins[ $plugin['slug'] ] ) ) {
1395
+			if ( empty( $plugin['slug'] ) || ! is_string( $plugin['slug'] ) || isset( $this->plugins[$plugin['slug']] ) ) {
1396 1396
 				return;
1397 1397
 			}
1398 1398
 
1399 1399
 			$defaults = array(
1400
-				'name'               => '',      // String
1401
-				'slug'               => '',      // String
1402
-				'source'             => 'repo',  // String
1403
-				'required'           => false,   // Boolean
1404
-				'version'            => '',      // String
1405
-				'force_activation'   => false,   // Boolean
1406
-				'force_deactivation' => false,   // Boolean
1407
-				'external_url'       => '',      // String
1408
-				'is_callable'        => '',      // String|Array.
1400
+				'name'               => '', // String
1401
+				'slug'               => '', // String
1402
+				'source'             => 'repo', // String
1403
+				'required'           => false, // Boolean
1404
+				'version'            => '', // String
1405
+				'force_activation'   => false, // Boolean
1406
+				'force_deactivation' => false, // Boolean
1407
+				'external_url'       => '', // String
1408
+				'is_callable'        => '', // String|Array.
1409 1409
 			);
1410 1410
 
1411 1411
 			// Prepare the received data.
@@ -1426,8 +1426,8 @@  discard block
 block discarded – undo
1426 1426
 			$plugin['source_type'] = $this->get_plugin_source_type( $plugin['source'] );
1427 1427
 
1428 1428
 			// Set the class properties.
1429
-			$this->plugins[ $plugin['slug'] ]    = $plugin;
1430
-			$this->sort_order[ $plugin['slug'] ] = $plugin['name'];
1429
+			$this->plugins[$plugin['slug']]    = $plugin;
1430
+			$this->sort_order[$plugin['slug']] = $plugin['name'];
1431 1431
 
1432 1432
 			// Should we add the force activation hook ?
1433 1433
 			if ( true === $plugin['force_activation'] ) {
@@ -1511,11 +1511,11 @@  discard block
 block discarded – undo
1511 1511
 			);
1512 1512
 
1513 1513
 			foreach ( $keys as $key ) {
1514
-				if ( isset( $config[ $key ] ) ) {
1515
-					if ( is_array( $config[ $key ] ) ) {
1516
-						$this->$key = array_merge( $this->$key, $config[ $key ] );
1514
+				if ( isset( $config[$key] ) ) {
1515
+					if ( is_array( $config[$key] ) ) {
1516
+						$this->$key = array_merge( $this->$key, $config[$key] );
1517 1517
 					} else {
1518
-						$this->$key = $config[ $key ];
1518
+						$this->$key = $config[$key];
1519 1519
 					}
1520 1520
 				}
1521 1521
 			}
@@ -1560,12 +1560,12 @@  discard block
 block discarded – undo
1560 1560
 		 *                            Parameter added in v2.5.0.
1561 1561
 		 */
1562 1562
 		public function populate_file_path( $plugin_slug = '' ) {
1563
-			if ( ! empty( $plugin_slug ) && is_string( $plugin_slug ) && isset( $this->plugins[ $plugin_slug ] ) ) {
1564
-				$this->plugins[ $plugin_slug ]['file_path'] = $this->_get_plugin_basename_from_slug( $plugin_slug );
1563
+			if ( ! empty( $plugin_slug ) && is_string( $plugin_slug ) && isset( $this->plugins[$plugin_slug] ) ) {
1564
+				$this->plugins[$plugin_slug]['file_path'] = $this->_get_plugin_basename_from_slug( $plugin_slug );
1565 1565
 			} else {
1566 1566
 				// Add file_path key for all plugins.
1567 1567
 				foreach ( $this->plugins as $slug => $values ) {
1568
-					$this->plugins[ $slug ]['file_path'] = $this->_get_plugin_basename_from_slug( $slug );
1568
+					$this->plugins[$slug]['file_path'] = $this->_get_plugin_basename_from_slug( $slug );
1569 1569
 				}
1570 1570
 			}
1571 1571
 		}
@@ -1605,8 +1605,8 @@  discard block
 block discarded – undo
1605 1605
 		 */
1606 1606
 		public function _get_plugin_data_from_name( $name, $data = 'slug' ) {
1607 1607
 			foreach ( $this->plugins as $values ) {
1608
-				if ( $name === $values['name'] && isset( $values[ $data ] ) ) {
1609
-					return $values[ $data ];
1608
+				if ( $name === $values['name'] && isset( $values[$data] ) ) {
1609
+					return $values[$data];
1610 1610
 				}
1611 1611
 			}
1612 1612
 
@@ -1624,13 +1624,13 @@  discard block
 block discarded – undo
1624 1624
 		public function get_download_url( $slug ) {
1625 1625
 			$dl_source = '';
1626 1626
 
1627
-			switch ( $this->plugins[ $slug ]['source_type'] ) {
1627
+			switch ( $this->plugins[$slug]['source_type'] ) {
1628 1628
 				case 'repo':
1629 1629
 					return $this->get_wp_repo_download_url( $slug );
1630 1630
 				case 'external':
1631
-					return $this->plugins[ $slug ]['source'];
1631
+					return $this->plugins[$slug]['source'];
1632 1632
 				case 'bundled':
1633
-					return $this->default_path . $this->plugins[ $slug ]['source'];
1633
+					return $this->default_path . $this->plugins[$slug]['source'];
1634 1634
 			}
1635 1635
 
1636 1636
 			return $dl_source; // Should never happen.
@@ -1666,7 +1666,7 @@  discard block
 block discarded – undo
1666 1666
 		protected function get_plugins_api( $slug ) {
1667 1667
 			static $api = array(); // Cache received responses.
1668 1668
 
1669
-			if ( ! isset( $api[ $slug ] ) ) {
1669
+			if ( ! isset( $api[$slug] ) ) {
1670 1670
 				if ( ! function_exists( 'plugins_api' ) ) {
1671 1671
 					require_once ABSPATH . 'wp-admin/includes/plugin-install.php';
1672 1672
 				}
@@ -1681,16 +1681,16 @@  discard block
 block discarded – undo
1681 1681
 					)
1682 1682
 				);
1683 1683
 
1684
-				$api[ $slug ] = false;
1684
+				$api[$slug] = false;
1685 1685
 
1686 1686
 				if ( is_wp_error( $response ) ) {
1687 1687
 					wp_die( esc_html( $this->strings['oops'] ) );
1688 1688
 				} else {
1689
-					$api[ $slug ] = $response;
1689
+					$api[$slug] = $response;
1690 1690
 				}
1691 1691
 			}
1692 1692
 
1693
-			return $api[ $slug ];
1693
+			return $api[$slug];
1694 1694
 		}
1695 1695
 
1696 1696
 		/**
@@ -1703,13 +1703,13 @@  discard block
 block discarded – undo
1703 1703
 		 *                or the plugin name if not.
1704 1704
 		 */
1705 1705
 		public function get_info_link( $slug ) {
1706
-			if ( ! empty( $this->plugins[ $slug ]['external_url'] ) && preg_match( self::IS_URL_REGEX, $this->plugins[ $slug ]['external_url'] ) ) {
1706
+			if ( ! empty( $this->plugins[$slug]['external_url'] ) && preg_match( self::IS_URL_REGEX, $this->plugins[$slug]['external_url'] ) ) {
1707 1707
 				$link = sprintf(
1708 1708
 					'<a href="%1$s" target="_blank">%2$s</a>',
1709
-					esc_url( $this->plugins[ $slug ]['external_url'] ),
1710
-					esc_html( $this->plugins[ $slug ]['name'] )
1709
+					esc_url( $this->plugins[$slug]['external_url'] ),
1710
+					esc_html( $this->plugins[$slug]['name'] )
1711 1711
 				);
1712
-			} elseif ( 'repo' === $this->plugins[ $slug ]['source_type'] ) {
1712
+			} elseif ( 'repo' === $this->plugins[$slug]['source_type'] ) {
1713 1713
 				$url = add_query_arg(
1714 1714
 					array(
1715 1715
 						'tab'       => 'plugin-information',
@@ -1724,10 +1724,10 @@  discard block
 block discarded – undo
1724 1724
 				$link = sprintf(
1725 1725
 					'<a href="%1$s" class="thickbox">%2$s</a>',
1726 1726
 					esc_url( $url ),
1727
-					esc_html( $this->plugins[ $slug ]['name'] )
1727
+					esc_html( $this->plugins[$slug]['name'] )
1728 1728
 				);
1729 1729
 			} else {
1730
-				$link = esc_html( $this->plugins[ $slug ]['name'] ); // No hyperlink.
1730
+				$link = esc_html( $this->plugins[$slug]['name'] ); // No hyperlink.
1731 1731
 			}
1732 1732
 
1733 1733
 			return $link;
@@ -1852,7 +1852,7 @@  discard block
 block discarded – undo
1852 1852
 		public function is_plugin_installed( $slug ) {
1853 1853
 			$installed_plugins = $this->get_plugins(); // Retrieve a list of all installed plugins (WP cached).
1854 1854
 
1855
-			return ( ! empty( $installed_plugins[ $this->plugins[ $slug ]['file_path'] ] ) );
1855
+			return ( ! empty( $installed_plugins[$this->plugins[$slug]['file_path']] ) );
1856 1856
 		}
1857 1857
 
1858 1858
 		/**
@@ -1864,7 +1864,7 @@  discard block
 block discarded – undo
1864 1864
 		 * @return bool True if active, false otherwise.
1865 1865
 		 */
1866 1866
 		public function is_plugin_active( $slug ) {
1867
-			return ( ( ! empty( $this->plugins[ $slug ]['is_callable'] ) && is_callable( $this->plugins[ $slug ]['is_callable'] ) ) || is_plugin_active( $this->plugins[ $slug ]['file_path'] ) );
1867
+			return ( ( ! empty( $this->plugins[$slug]['is_callable'] ) && is_callable( $this->plugins[$slug]['is_callable'] ) ) || is_plugin_active( $this->plugins[$slug]['file_path'] ) );
1868 1868
 		}
1869 1869
 
1870 1870
 		/**
@@ -1878,7 +1878,7 @@  discard block
 block discarded – undo
1878 1878
 		 */
1879 1879
 		public function can_plugin_update( $slug ) {
1880 1880
 			// We currently can't get reliable info on non-WP-repo plugins - issue #380.
1881
-			if ( 'repo' !== $this->plugins[ $slug ]['source_type'] ) {
1881
+			if ( 'repo' !== $this->plugins[$slug]['source_type'] ) {
1882 1882
 				return true;
1883 1883
 			}
1884 1884
 
@@ -1934,8 +1934,8 @@  discard block
 block discarded – undo
1934 1934
 		public function get_installed_version( $slug ) {
1935 1935
 			$installed_plugins = $this->get_plugins(); // Retrieve a list of all installed plugins (WP cached).
1936 1936
 
1937
-			if ( ! empty( $installed_plugins[ $this->plugins[ $slug ]['file_path'] ]['Version'] ) ) {
1938
-				return $installed_plugins[ $this->plugins[ $slug ]['file_path'] ]['Version'];
1937
+			if ( ! empty( $installed_plugins[$this->plugins[$slug]['file_path']]['Version'] ) ) {
1938
+				return $installed_plugins[$this->plugins[$slug]['file_path']]['Version'];
1939 1939
 			}
1940 1940
 
1941 1941
 			return '';
@@ -1951,7 +1951,7 @@  discard block
 block discarded – undo
1951 1951
 		 */
1952 1952
 		public function does_plugin_require_update( $slug ) {
1953 1953
 			$installed_version = $this->get_installed_version( $slug );
1954
-			$minimum_version   = $this->plugins[ $slug ]['version'];
1954
+			$minimum_version   = $this->plugins[$slug]['version'];
1955 1955
 
1956 1956
 			return version_compare( $minimum_version, $installed_version, '>' );
1957 1957
 		}
@@ -1966,9 +1966,9 @@  discard block
 block discarded – undo
1966 1966
 		 */
1967 1967
 		public function does_plugin_have_update( $slug ) {
1968 1968
 			// Presume bundled and external plugins will point to a package which meets the minimum required version.
1969
-			if ( 'repo' !== $this->plugins[ $slug ]['source_type'] ) {
1969
+			if ( 'repo' !== $this->plugins[$slug]['source_type'] ) {
1970 1970
 				if ( $this->does_plugin_require_update( $slug ) ) {
1971
-					return $this->plugins[ $slug ]['version'];
1971
+					return $this->plugins[$slug]['version'];
1972 1972
 				}
1973 1973
 
1974 1974
 				return false;
@@ -1976,8 +1976,8 @@  discard block
 block discarded – undo
1976 1976
 
1977 1977
 			$repo_updates = get_site_transient( 'update_plugins' );
1978 1978
 
1979
-			if ( isset( $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->new_version ) ) {
1980
-				return $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->new_version;
1979
+			if ( isset( $repo_updates->response[$this->plugins[$slug]['file_path']]->new_version ) ) {
1980
+				return $repo_updates->response[$this->plugins[$slug]['file_path']]->new_version;
1981 1981
 			}
1982 1982
 
1983 1983
 			return false;
@@ -1993,14 +1993,14 @@  discard block
 block discarded – undo
1993 1993
 		 */
1994 1994
 		public function get_upgrade_notice( $slug ) {
1995 1995
 			// We currently can't get reliable info on non-WP-repo plugins - issue #380.
1996
-			if ( 'repo' !== $this->plugins[ $slug ]['source_type'] ) {
1996
+			if ( 'repo' !== $this->plugins[$slug]['source_type'] ) {
1997 1997
 				return '';
1998 1998
 			}
1999 1999
 
2000 2000
 			$repo_updates = get_site_transient( 'update_plugins' );
2001 2001
 
2002
-			if ( ! empty( $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->upgrade_notice ) ) {
2003
-				return $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->upgrade_notice;
2002
+			if ( ! empty( $repo_updates->response[$this->plugins[$slug]['file_path']]->upgrade_notice ) ) {
2003
+				return $repo_updates->response[$this->plugins[$slug]['file_path']]->upgrade_notice;
2004 2004
 			}
2005 2005
 
2006 2006
 			return '';
@@ -2084,7 +2084,7 @@  discard block
 block discarded – undo
2084 2084
 				 */
2085 2085
 				if ( true === $plugin['force_deactivation'] && is_plugin_active( $plugin['file_path'] ) ) {
2086 2086
 					deactivate_plugins( $plugin['file_path'] );
2087
-					$deactivated[ $plugin['file_path'] ] = time();
2087
+					$deactivated[$plugin['file_path']] = time();
2088 2088
 				}
2089 2089
 			}
2090 2090
 
@@ -2321,30 +2321,30 @@  discard block
 block discarded – undo
2321 2321
 			$i          = 0;
2322 2322
 
2323 2323
 			// Redirect to the 'all' view if no plugins were found for the selected view context.
2324
-			if ( empty( $plugins[ $this->view_context ] ) ) {
2324
+			if ( empty( $plugins[$this->view_context] ) ) {
2325 2325
 				$this->view_context = 'all';
2326 2326
 			}
2327 2327
 
2328
-			foreach ( $plugins[ $this->view_context ] as $slug => $plugin ) {
2329
-				$table_data[ $i ]['sanitized_plugin']  = $plugin['name'];
2330
-				$table_data[ $i ]['slug']              = $slug;
2331
-				$table_data[ $i ]['plugin']            = '<strong>' . $this->tgmpa->get_info_link( $slug ) . '</strong>';
2332
-				$table_data[ $i ]['source']            = $this->get_plugin_source_type_text( $plugin['source_type'] );
2333
-				$table_data[ $i ]['type']              = $this->get_plugin_advise_type_text( $plugin['required'] );
2334
-				$table_data[ $i ]['status']            = $this->get_plugin_status_text( $slug );
2335
-				$table_data[ $i ]['installed_version'] = $this->tgmpa->get_installed_version( $slug );
2336
-				$table_data[ $i ]['minimum_version']   = $plugin['version'];
2337
-				$table_data[ $i ]['available_version'] = $this->tgmpa->does_plugin_have_update( $slug );
2328
+			foreach ( $plugins[$this->view_context] as $slug => $plugin ) {
2329
+				$table_data[$i]['sanitized_plugin']  = $plugin['name'];
2330
+				$table_data[$i]['slug']              = $slug;
2331
+				$table_data[$i]['plugin']            = '<strong>' . $this->tgmpa->get_info_link( $slug ) . '</strong>';
2332
+				$table_data[$i]['source']            = $this->get_plugin_source_type_text( $plugin['source_type'] );
2333
+				$table_data[$i]['type']              = $this->get_plugin_advise_type_text( $plugin['required'] );
2334
+				$table_data[$i]['status']            = $this->get_plugin_status_text( $slug );
2335
+				$table_data[$i]['installed_version'] = $this->tgmpa->get_installed_version( $slug );
2336
+				$table_data[$i]['minimum_version']   = $plugin['version'];
2337
+				$table_data[$i]['available_version'] = $this->tgmpa->does_plugin_have_update( $slug );
2338 2338
 
2339 2339
 				// Prep the upgrade notice info.
2340 2340
 				$upgrade_notice = $this->tgmpa->get_upgrade_notice( $slug );
2341 2341
 				if ( ! empty( $upgrade_notice ) ) {
2342
-					$table_data[ $i ]['upgrade_notice'] = $upgrade_notice;
2342
+					$table_data[$i]['upgrade_notice'] = $upgrade_notice;
2343 2343
 
2344 2344
 					add_action( "tgmpa_after_plugin_row_{$slug}", array( $this, 'wp_plugin_update_row' ), 10, 2 );
2345 2345
 				}
2346 2346
 
2347
-				$table_data[ $i ] = apply_filters( 'tgmpa_table_data_item', $table_data[ $i ], $plugin );
2347
+				$table_data[$i] = apply_filters( 'tgmpa_table_data_item', $table_data[$i], $plugin );
2348 2348
 
2349 2349
 				$i++;
2350 2350
 			}
@@ -2370,17 +2370,17 @@  discard block
 block discarded – undo
2370 2370
 					// No need to display plugins if they are installed, up-to-date and active.
2371 2371
 					continue;
2372 2372
 				} else {
2373
-					$plugins['all'][ $slug ] = $plugin;
2373
+					$plugins['all'][$slug] = $plugin;
2374 2374
 
2375 2375
 					if ( ! $this->tgmpa->is_plugin_installed( $slug ) ) {
2376
-						$plugins['install'][ $slug ] = $plugin;
2376
+						$plugins['install'][$slug] = $plugin;
2377 2377
 					} else {
2378 2378
 						if ( false !== $this->tgmpa->does_plugin_have_update( $slug ) ) {
2379
-							$plugins['update'][ $slug ] = $plugin;
2379
+							$plugins['update'][$slug] = $plugin;
2380 2380
 						}
2381 2381
 
2382 2382
 						if ( $this->tgmpa->can_plugin_activate( $slug ) ) {
2383
-							$plugins['activate'][ $slug ] = $plugin;
2383
+							$plugins['activate'][$slug] = $plugin;
2384 2384
 						}
2385 2385
 					}
2386 2386
 				}
@@ -2398,7 +2398,7 @@  discard block
 block discarded – undo
2398 2398
 		 */
2399 2399
 		protected function set_view_totals( $plugins ) {
2400 2400
 			foreach ( $plugins as $type => $list ) {
2401
-				$this->view_totals[ $type ] = count( $list );
2401
+				$this->view_totals[$type] = count( $list );
2402 2402
 			}
2403 2403
 		}
2404 2404
 
@@ -2500,8 +2500,8 @@  discard block
 block discarded – undo
2500 2500
 			$name = array();
2501 2501
 
2502 2502
 			foreach ( $items as $i => $plugin ) {
2503
-				$type[ $i ] = $plugin['type']; // Required / recommended.
2504
-				$name[ $i ] = $plugin['sanitized_plugin'];
2503
+				$type[$i] = $plugin['type']; // Required / recommended.
2504
+				$name[$i] = $plugin['sanitized_plugin'];
2505 2505
 			}
2506 2506
 
2507 2507
 			array_multisort( $type, SORT_DESC, $name, SORT_ASC, $items );
@@ -2548,7 +2548,7 @@  discard block
 block discarded – undo
2548 2548
 
2549 2549
 				if ( ! empty( $text ) ) {
2550 2550
 
2551
-					$status_links[ $type ] = sprintf(
2551
+					$status_links[$type] = sprintf(
2552 2552
 						'<a href="%s"%s>%s</a>',
2553 2553
 						esc_url( $this->tgmpa->get_tgmpa_status_url( $type ) ),
2554 2554
 						( $type === $this->view_context ) ? ' class="current"' : '',
@@ -2571,7 +2571,7 @@  discard block
 block discarded – undo
2571 2571
 		 * @return string
2572 2572
 		 */
2573 2573
 		public function column_default( $item, $column_name ) {
2574
-			return $item[ $column_name ];
2574
+			return $item[$column_name];
2575 2575
 		}
2576 2576
 
2577 2577
 		/**
@@ -2771,7 +2771,7 @@  discard block
 block discarded – undo
2771 2771
 					'tgmpa-nonce'
2772 2772
 				);
2773 2773
 
2774
-				$action_links[ $action ] = sprintf(
2774
+				$action_links[$action] = sprintf(
2775 2775
 					'<a href="%1$s">' . esc_html( $text ) . '</a>', // $text contains the second placeholder.
2776 2776
 					esc_url( $nonce_url ),
2777 2777
 					'<span class="screen-reader-text">' . esc_html( $item['sanitized_plugin'] ) . '</span>'
@@ -2922,19 +2922,19 @@  discard block
 block discarded – undo
2922 2922
 				// Validate the received input.
2923 2923
 				foreach ( $plugins_to_install as $key => $slug ) {
2924 2924
 					// Check if the plugin was registered with TGMPA and remove if not.
2925
-					if ( ! isset( $this->tgmpa->plugins[ $slug ] ) ) {
2926
-						unset( $plugins_to_install[ $key ] );
2925
+					if ( ! isset( $this->tgmpa->plugins[$slug] ) ) {
2926
+						unset( $plugins_to_install[$key] );
2927 2927
 						continue;
2928 2928
 					}
2929 2929
 
2930 2930
 					// For install: make sure this is a plugin we *can* install and not one already installed.
2931 2931
 					if ( 'install' === $install_type && true === $this->tgmpa->is_plugin_installed( $slug ) ) {
2932
-						unset( $plugins_to_install[ $key ] );
2932
+						unset( $plugins_to_install[$key] );
2933 2933
 					}
2934 2934
 
2935 2935
 					// For updates: make sure this is a plugin we *can* update (update available and WP version ok).
2936 2936
 					if ( 'update' === $install_type && false === $this->tgmpa->is_plugin_updatetable( $slug ) ) {
2937
-						unset( $plugins_to_install[ $key ] );
2937
+						unset( $plugins_to_install[$key] );
2938 2938
 					}
2939 2939
 				}
2940 2940
 
@@ -2986,7 +2986,7 @@  discard block
 block discarded – undo
2986 2986
 
2987 2987
 				// Prepare the data for validated plugins for the install/upgrade.
2988 2988
 				foreach ( $plugins_to_install as $slug ) {
2989
-					$name   = $this->tgmpa->plugins[ $slug ]['name'];
2989
+					$name   = $this->tgmpa->plugins[$slug]['name'];
2990 2990
 					$source = $this->tgmpa->get_download_url( $slug );
2991 2991
 
2992 2992
 					if ( ! empty( $name ) && ! empty( $source ) ) {
@@ -2999,9 +2999,9 @@  discard block
 block discarded – undo
2999 2999
 								break;
3000 3000
 
3001 3001
 							case 'update':
3002
-								$file_paths[]                 = $this->tgmpa->plugins[ $slug ]['file_path'];
3003
-								$to_inject[ $slug ]           = $this->tgmpa->plugins[ $slug ];
3004
-								$to_inject[ $slug ]['source'] = $source;
3002
+								$file_paths[]                 = $this->tgmpa->plugins[$slug]['file_path'];
3003
+								$to_inject[$slug]           = $this->tgmpa->plugins[$slug];
3004
+								$to_inject[$slug]['source'] = $source;
3005 3005
 								break;
3006 3006
 						}
3007 3007
 					}
@@ -3068,8 +3068,8 @@  discard block
 block discarded – undo
3068 3068
 				// Grab the file paths for the selected & inactive plugins from the registration array.
3069 3069
 				foreach ( $plugins as $slug ) {
3070 3070
 					if ( $this->tgmpa->can_plugin_activate( $slug ) ) {
3071
-						$plugins_to_activate[] = $this->tgmpa->plugins[ $slug ]['file_path'];
3072
-						$plugin_names[]        = $this->tgmpa->plugins[ $slug ]['name'];
3071
+						$plugins_to_activate[] = $this->tgmpa->plugins[$slug]['file_path'];
3072
+						$plugin_names[]        = $this->tgmpa->plugins[$slug]['name'];
3073 3073
 					}
3074 3074
 				}
3075 3075
 				unset( $slug );
@@ -3101,8 +3101,8 @@  discard block
 block discarded – undo
3101 3101
 					// Update recently activated plugins option.
3102 3102
 					$recent = (array) get_option( 'recently_activated' );
3103 3103
 					foreach ( $plugins_to_activate as $plugin => $time ) {
3104
-						if ( isset( $recent[ $plugin ] ) ) {
3105
-							unset( $recent[ $plugin ] );
3104
+						if ( isset( $recent[$plugin] ) ) {
3105
+							unset( $recent[$plugin] );
3106 3106
 						}
3107 3107
 					}
3108 3108
 					update_option( 'recently_activated', $recent );
@@ -3433,7 +3433,7 @@  discard block
 block discarded – undo
3433 3433
 								)
3434 3434
 							);
3435 3435
 
3436
-							$results[ $plugin ] = $this->result;
3436
+							$results[$plugin] = $this->result;
3437 3437
 
3438 3438
 							// Prevent credentials auth screen from displaying multiple times.
3439 3439
 							if ( false === $result ) {
@@ -3623,7 +3623,7 @@  discard block
 block discarded – undo
3623 3623
 							'names'        => array(),
3624 3624
 							'install_type' => 'install',
3625 3625
 						);
3626
-						$args     = wp_parse_args( $args, $defaults );
3626
+						$args = wp_parse_args( $args, $defaults );
3627 3627
 
3628 3628
 						// Set plugin names to $this->plugin_names property.
3629 3629
 						$this->plugin_names = $args['names'];
@@ -3685,7 +3685,7 @@  discard block
 block discarded – undo
3685 3685
 					 */
3686 3686
 					public function before( $title = '' ) {
3687 3687
 						if ( empty( $title ) ) {
3688
-							$title = esc_html( $this->plugin_names[ $this->i ] );
3688
+							$title = esc_html( $this->plugin_names[$this->i] );
3689 3689
 						}
3690 3690
 						parent::before( $title );
3691 3691
 					}
@@ -3702,7 +3702,7 @@  discard block
 block discarded – undo
3702 3702
 					 */
3703 3703
 					public function after( $title = '' ) {
3704 3704
 						if ( empty( $title ) ) {
3705
-							$title = esc_html( $this->plugin_names[ $this->i ] );
3705
+							$title = esc_html( $this->plugin_names[$this->i] );
3706 3706
 						}
3707 3707
 						parent::after( $title );
3708 3708
 
@@ -3875,7 +3875,7 @@  discard block
 block discarded – undo
3875 3875
 		 */
3876 3876
 		protected static function emulate_filter_bool( $value ) {
3877 3877
 			// @codingStandardsIgnoreStart
3878
-			static $true  = array(
3878
+			static $true = array(
3879 3879
 				'1',
3880 3880
 				'true', 'True', 'TRUE',
3881 3881
 				'y', 'Y',
Please login to merge, or discard this patch.
example.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -121,16 +121,16 @@
 block discarded – undo
121 121
 	 * Only uncomment the strings in the config array if you want to customize the strings.
122 122
 	 */
123 123
 	$config = array(
124
-		'id'           => 'tgmpa',                 // Unique ID for hashing notices for multiple instances of TGMPA.
125
-		'default_path' => '',                      // Default absolute path to bundled plugins.
124
+		'id'           => 'tgmpa', // Unique ID for hashing notices for multiple instances of TGMPA.
125
+		'default_path' => '', // Default absolute path to bundled plugins.
126 126
 		'menu'         => 'tgmpa-install-plugins', // Menu slug.
127
-		'parent_slug'  => 'themes.php',            // Parent menu slug.
128
-		'capability'   => 'edit_theme_options',    // Capability needed to view plugin install page, should be a capability associated with the parent menu used.
129
-		'has_notices'  => true,                    // Show admin notices or not.
130
-		'dismissable'  => true,                    // If false, a user cannot dismiss the nag message.
131
-		'dismiss_msg'  => '',                      // If 'dismissable' is false, this message will be output at top of nag.
132
-		'is_automatic' => false,                   // Automatically activate plugins after installation or not.
133
-		'message'      => '',                      // Message to output right before the plugins table.
127
+		'parent_slug'  => 'themes.php', // Parent menu slug.
128
+		'capability'   => 'edit_theme_options', // Capability needed to view plugin install page, should be a capability associated with the parent menu used.
129
+		'has_notices'  => true, // Show admin notices or not.
130
+		'dismissable'  => true, // If false, a user cannot dismiss the nag message.
131
+		'dismiss_msg'  => '', // If 'dismissable' is false, this message will be output at top of nag.
132
+		'is_automatic' => false, // Automatically activate plugins after installation or not.
133
+		'message'      => '', // Message to output right before the plugins table.
134 134
 
135 135
 		/*
136 136
 		'strings'      => array(
Please login to merge, or discard this patch.