diff --git a/README.md b/README.md index 16546e5..1e42a06 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,9 @@ Built using: ## Changelog +### v3.8.1 +* Fix for fatal error from old versions of TGMPA library + ### v3.8 * Update Bootstrap to 3.3.6 * Enable field visibility settings in Gravity Forms diff --git a/inc/dependencies/class-tgm-plugin-activation.php b/inc/dependencies/class-tgm-plugin-activation.php index 81fea3e..c30c0fe 100644 --- a/inc/dependencies/class-tgm-plugin-activation.php +++ b/inc/dependencies/class-tgm-plugin-activation.php @@ -2,47 +2,78 @@ /** * Plugin installation and activation for WordPress themes. * + * Please note that this is a drop-in library for a theme or plugin. + * The authors of this library (Thomas, Gary and Juliette) are NOT responsible + * for the support of your plugin or theme. Please contact the plugin + * or theme author for support. + * * @package TGM-Plugin-Activation - * @version 2.4.0 - * @author Thomas Griffin - * @author Gary Jones - * @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 + * @version 2.5.2 + * @link http://tgmpluginactivation.com/ + * @author Thomas Griffin, Gary Jones, Juliette Reinders Folmer + * @copyright Copyright (c) 2011, Thomas Griffin + * @license GPL-2.0+ */ /* - Copyright 2014 Thomas Griffin (thomasgriffinmedia.com) + Copyright 2011 Thomas Griffin (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 2, as - published by the Free Software Foundation. + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License, version 2, 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. + 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 + 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')) { +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. + * The plugins can be either bundled, downloaded from the WordPress + * Plugin Repository or downloaded from another external source. * - * @since 1.0.0 + * @since 1.0.0 * * @package TGM-Plugin-Activation - * @author Thomas Griffin - * @author Gary Jones + * @author Thomas Griffin + * @author Gary Jones */ class TGM_Plugin_Activation { + /** + * TGMPA version number. + * + * @since 2.5.0 + * + * @const string Version number. + */ + const TGMPA_VERSION = '2.5.2'; + + /** + * Regular expression to test if a URL is a WP plugin repo URL. + * + * @const string Regex. + * + * @since 2.5.0 + */ + const WP_REPO_REGEX = '|^http[s]?://wordpress\.org/(?:extend/)?plugins/|'; + + /** + * Arbitrary regular expression to test if a string starts with a URL. + * + * @const string Regex. + * + * @since 2.5.0 + */ + const IS_URL_REGEX = '|^http[s]?://|'; /** * Holds a copy of itself, so it can be referenced by the class name. @@ -58,25 +89,81 @@ class TGM_Plugin_Activation { * * @since 1.0.0 * + * @since 2.5.0 the array has the plugin slug as an associative key. + * * @var array */ public $plugins = array(); /** - * Name of the querystring argument for the admin page. + * Holds arrays of plugin names to use to sort the plugins array. + * + * @since 2.5.0 + * + * @var array + */ + protected $sort_order = array(); + + /** + * Whether any plugins have the 'force_activation' setting set to true. + * + * @since 2.5.0 + * + * @var bool + */ + protected $has_forced_activation = false; + + /** + * Whether any plugins have the 'force_deactivation' setting set to true. + * + * @since 2.5.0 + * + * @var bool + */ + protected $has_forced_deactivation = false; + + /** + * Name of the unique ID to hash notices. + * + * @since 2.4.0 + * + * @var string + */ + public $id = 'tgmpa'; + + /** + * Name of the query-string argument for the admin page. * * @since 1.0.0 * * @var string */ - public $menu = 'tgmpa-install-plugins'; + protected $menu = 'tgmpa-install-plugins'; + + /** + * Parent menu file slug. + * + * @since 2.5.0 + * + * @var string + */ + public $parent_slug = 'themes.php'; + + /** + * Capability needed to view the plugin installation menu item. + * + * @since 2.5.0 + * + * @var string + */ + public $capability = 'edit_theme_options'; /** - * Default absolute path to folder containing pre-packaged plugin zip files. + * Default absolute path to folder containing bundled plugin zip files. * * @since 2.0.0 * - * @var string Absolute path prefix to packaged zip file location. Default is empty string. + * @var string Absolute path prefix to zip file location for bundled plugins. Default is empty string. */ public $default_path = ''; @@ -87,7 +174,7 @@ class TGM_Plugin_Activation { * * @var boolean */ - public $has_notices = TRUE; + public $has_notices = true; /** * Flag to determine if the user can dismiss the notice nag. @@ -96,7 +183,7 @@ class TGM_Plugin_Activation { * * @var boolean */ - public $dismissable = TRUE; + public $dismissable = true; /** * Message to be output above nag notice if dismissable is false. @@ -114,7 +201,7 @@ class TGM_Plugin_Activation { * * @var boolean */ - public $is_automatic = FALSE; + public $is_automatic = false; /** * Optional message to display before the plugins table. @@ -145,50 +232,73 @@ class TGM_Plugin_Activation { */ public $wp_version; + /** + * Holds the hook name for the admin page. + * + * @since 2.5.0 + * + * @var string + */ + public $page_hook; + /** * Adds a reference of this object to $instance, populates default strings, * does the tgmpa_init action hook, and hooks in the interactions to init. * + * {@internal This method should be `protected`, but as too many TGMPA implementations + * haven't upgraded beyond v2.3.6 yet, this gives backward compatibility issues. + * Reverted back to public for the time being.}} + * * @since 1.0.0 * - * @see TGM_Plugin_Activation::init() + * @see TGM_Plugin_Activation::init() */ public function __construct() { - - self::$instance = $this; - - $this->strings = array( - 'page_title' => __('Install Required Plugins', 'tgmpa'), - 'menu_title' => __('Install Plugins', 'tgmpa'), - 'installing' => __('Installing Plugin: %s', 'tgmpa'), - 'oops' => __('Something went wrong.', 'tgmpa'), - '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('Begin activating plugin', 'Begin activating plugins'), - 'return' => __('Return to Required Plugins Installer', 'tgmpa'), - 'dashboard' => __('Return to the dashboard', 'tgmpa'), - 'plugin_activated' => __('Plugin activated successfully.', 'tgmpa'), - 'activated_successfully' => __('The following plugin was activated successfully:', 'tgmpa'), - 'complete' => __('All plugins installed and activated successfully. %1$s', 'tgmpa'), - 'dismiss' => __('Dismiss this notice', 'tgmpa'), - ); - // Set the current WordPress version. - global $wp_version; - $this->wp_version = $wp_version; + $this->wp_version = $GLOBALS['wp_version']; // Announce that the class is ready, and pass the object (for advanced use). - do_action_ref_array('tgmpa_init', array($this)); + do_action_ref_array( 'tgmpa_init', array( $this ) ); + + /* + * Load our text domain and allow for overloading the fall-back file. + * + * {@internal IMPORTANT! If this code changes, review the regex in the custom TGMPA + * generator on the website.}} + */ + add_action( 'init', array( $this, 'load_textdomain' ), 5 ); + add_filter( 'load_textdomain_mofile', array( $this, 'overload_textdomain_mofile' ), 10, 2 ); // When the rest of WP has loaded, kick-start the rest of the class. - add_action('init', array($this, 'init')); + add_action( 'init', array( $this, 'init' ) ); + } + + /** + * Magic method to (not) set protected properties from outside of this class. + * + * {@internal hackedihack... There is a serious bug in v2.3.2 - 2.3.6 where the `menu` property + * is being assigned rather than tested in a conditional, effectively rendering it useless. + * This 'hack' prevents this from happening.}} + * + * @see https://github.com/TGMPA/TGM-Plugin-Activation/blob/2.3.6/tgm-plugin-activation/class-tgm-plugin-activation.php#L1593 + * + * @param string $name Name of an inaccessible property. + * @param mixed $value Value to assign to the property. + * @return void Silently fail to set the property when this is tried from outside of this class context. + * (Inside this class context, the __set() method if not used as there is direct access.) + */ + public function __set( $name, $value ) { + return; + } + + /** + * Magic method to get the value of a protected property outside of this class context. + * + * @param string $name Name of an inaccessible property. + * @return mixed The property value. + */ + public function __get( $name ) { + return $this->{$name}; } /** @@ -198,63 +308,295 @@ public function __construct() { * * @since 2.0.0 * - * @see TGM_Plugin_Activation::admin_menu() - * @see TGM_Plugin_Activation::notices() - * @see TGM_Plugin_Activation::styles() + * @see TGM_Plugin_Activation::admin_menu() + * @see TGM_Plugin_Activation::notices() + * @see TGM_Plugin_Activation::styles() */ public function init() { + /** + * By default TGMPA only loads on the WP back-end and not in an Ajax call. Using this filter + * you can overrule that behaviour. + * + * @since 2.5.0 + * + * @param bool $load Whether or not TGMPA should load. + * Defaults to the return of `is_admin() && ! defined( 'DOING_AJAX' )`. + */ + if ( true !== apply_filters( 'tgmpa_load', ( is_admin() && ! defined( 'DOING_AJAX' ) ) ) ) { + return; + } + + // Load class strings. + $this->strings = array( + 'page_title' => __( 'Install Required Plugins', 'tgmpa' ), + 'menu_title' => __( 'Install Plugins', 'tgmpa' ), + 'installing' => __( 'Installing Plugin: %s', 'tgmpa' ), + 'updating' => __( 'Updating Plugin: %s', 'tgmpa' ), + 'oops' => __( 'Something went wrong with the plugin API.', 'tgmpa' ), + 'notice_can_install_required' => _n_noop( + 'This theme requires the following plugin: %1$s.', + 'This theme requires the following plugins: %1$s.', + 'tgmpa' + ), + 'notice_can_install_recommended' => _n_noop( + 'This theme recommends the following plugin: %1$s.', + 'This theme recommends the following plugins: %1$s.', + 'tgmpa' + ), + '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.', + 'tgmpa' + ), + 'notice_ask_to_update_maybe' => _n_noop( + 'There is an update available for: %1$s.', + 'There are updates available for the following plugins: %1$s.', + 'tgmpa' + ), + 'notice_can_activate_required' => _n_noop( + 'The following required plugin is currently inactive: %1$s.', + 'The following required plugins are currently inactive: %1$s.', + 'tgmpa' + ), + 'notice_can_activate_recommended' => _n_noop( + 'The following recommended plugin is currently inactive: %1$s.', + 'The following recommended plugins are currently inactive: %1$s.', + 'tgmpa' + ), + 'install_link' => _n_noop( + 'Begin installing plugin', + 'Begin installing plugins', + 'tgmpa' + ), + 'update_link' => _n_noop( + 'Begin updating plugin', + 'Begin updating plugins', + 'tgmpa' + ), + 'activate_link' => _n_noop( + 'Begin activating plugin', + 'Begin activating plugins', + 'tgmpa' + ), + 'return' => __( 'Return to Required Plugins Installer', 'tgmpa' ), + 'dashboard' => __( 'Return to the dashboard', 'tgmpa' ), + 'plugin_activated' => __( 'Plugin activated successfully.', 'tgmpa' ), + 'activated_successfully' => __( 'The following plugin was activated successfully:', 'tgmpa' ), + 'plugin_already_active' => __( 'No action taken. Plugin %1$s was already active.', 'tgmpa' ), + 'plugin_needs_higher_version' => __( 'Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.', 'tgmpa' ), + 'complete' => __( 'All plugins installed and activated successfully. %1$s', 'tgmpa' ), + 'dismiss' => __( 'Dismiss this notice', 'tgmpa' ), + 'notice_cannot_install_activate' => __( 'There are one or more required or recommended plugins to install, update or activate.', 'tgmpa' ), + 'contact_admin' => __( 'Please contact the administrator of this site for help.', 'tgmpa' ), + ); - do_action('tgmpa_register'); - // After this point, the plugins should be registered and the configuration set. + 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(); + if ( empty( $this->plugins ) || ! is_array( $this->plugins ) ) { + return; + } - foreach($this->plugins as $plugin) { - $sorted[] = $plugin['name']; - } + // Set up the menu and notices if we still have outstanding actions. + if ( true !== $this->is_tgmpa_complete() ) { + // Sort the plugins. + array_multisort( $this->sort_order, SORT_ASC, $this->plugins ); - array_multisort($sorted, SORT_ASC, $this->plugins); + add_action( 'admin_menu', array( $this, 'admin_menu' ) ); + add_action( 'admin_head', array( $this, 'dismiss' ) ); - add_action('admin_menu', array($this, 'admin_menu')); - add_action('admin_head', array($this, 'dismiss')); - add_filter('install_plugin_complete_actions', array($this, 'actions')); - add_action('switch_theme', array($this, 'flush_plugins_cache')); + // Prevent the normal links from showing underneath a single install/update page. + add_filter( 'install_plugin_complete_actions', array( $this, 'actions' ) ); + add_filter( 'update_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' ), 1 ); + add_action( 'admin_enqueue_scripts', array( $this, 'thickbox' ) ); } + } + + // If needed, filter plugin action links. + add_action( 'load-plugins.php', array( $this, 'add_plugin_action_link_filters' ), 1 ); + + // Make sure things get reset on switch theme. + add_action( 'switch_theme', array( $this, 'flush_plugins_cache' ) ); + + if ( $this->has_notices ) { + add_action( 'switch_theme', array( $this, 'update_dismiss' ) ); + } + + // Setup the force activation hook. + if ( true === $this->has_forced_activation ) { + add_action( 'admin_init', array( $this, 'force_activation' ) ); + } + + // Setup the force deactivation hook. + if ( true === $this->has_forced_deactivation ) { + add_action( 'switch_theme', array( $this, 'force_deactivation' ) ); + } + } + + /** + * Load translations. + * + * @since 2.x.x + * + * (@internal Uses `load_theme_textdomain()` rather than `load_plugin_textdomain()` to + * get round the different ways of handling the path and deprecated notices being thrown + * and such. For plugins, the actual file name will be corrected by a filter.}} + * + * {@internal IMPORTANT! If this function changes, review the regex in the custom TGMPA + * generator on the website.}} + */ + public function load_textdomain() { + if ( is_textdomain_loaded( 'tgmpa' ) ) { + return; + } + + if ( false !== strpos( __FILE__, WP_PLUGIN_DIR ) || false !== strpos( __FILE__, WPMU_PLUGIN_DIR ) ) { + // Plugin, we'll need to adjust the file name. + add_action( 'load_textdomain_mofile', array( $this, 'correct_plugin_mofile' ), 10, 2 ); + load_theme_textdomain( 'tgmpa', dirname( __FILE__ ) . '/languages' ); + remove_action( 'load_textdomain_mofile', array( $this, 'correct_plugin_mofile' ), 10 ); + } else { + load_theme_textdomain( 'tgmpa', dirname( __FILE__ ) . '/languages' ); + } + } + + /** + * Correct the .mo file name for (must-use) plugins. + * + * Themese use `/path/{locale}.mo` while plugins use `/path/{text-domain}-{locale}.mo`. + * + * {@internal IMPORTANT! If this function changes, review the regex in the custom TGMPA + * generator on the website.}} + * + * @since 2.x.x + * + * @param string $mofile Full path to the target mofile. + * @param string $domain The domain for which a language file is being loaded. + * @return string $mofile + */ + public function correct_plugin_mofile( $mofile, $domain ) { + // Exit early if not our domain (just in case). + if ( 'tgmpa' !== $domain ) { + return $mofile; + } + return preg_replace( '`/([a-z]{2}_[A-Z]{2}.mo)$`', '/tgmpa-$1', $mofile ); + } + + /** + * Potentially overload the fall-back translation file for the current language. + * + * WP, by default since WP 3.7, will load a local translation first and if none + * can be found, will try and find a translation in the /wp-content/languages/ directory. + * As this library is theme/plugin agnostic, translation files for TGMPA can exist both + * in the WP_LANG_DIR /plugins/ subdirectory as well as in the /themes/ subdirectory. + * + * This method makes sure both directories are checked. + * + * {@internal IMPORTANT! If this function changes, review the regex in the custom TGMPA + * generator on the website.}} + * + * @since 2.x.x + * + * @param string $mofile Full path to the target mofile. + * @param string $domain The domain for which a language file is being loaded. + * @return string $mofile + */ + public function overload_textdomain_mofile( $mofile, $domain ) { + // Exit early if not our domain, not a WP_LANG_DIR load or if the file exists and is readable. + if ( 'tgmpa' !== $domain || false === strpos( $mofile, WP_LANG_DIR ) || @is_readable( $mofile ) ) { + return $mofile; + } + + // Current fallback file is not valid, let's try the alternative option. + if ( false !== strpos( $mofile, '/themes/' ) ) { + return str_replace( '/themes/', '/plugins/', $mofile ); + } elseif ( false !== strpos( $mofile, '/plugins/' ) ) { + return str_replace( '/plugins/', '/themes/', $mofile ); + } else { + return $mofile; + } + } - if($this->has_notices) { - add_action('admin_notices', array($this, 'notices')); - add_action('admin_init', array($this, 'admin_init'), 1); - add_action('admin_enqueue_scripts', array($this, 'thickbox')); - add_action('switch_theme', array($this, 'update_dismiss')); + /** + * Hook in plugin action link filters for the WP native plugins page. + * + * - Prevent activation of plugins which don't meet the minimum version requirements. + * - Prevent deactivation of force-activated plugins. + * - Add update notice if update available. + * + * @since 2.5.0 + */ + public function add_plugin_action_link_filters() { + foreach ( $this->plugins as $slug => $plugin ) { + if ( false === $this->can_plugin_activate( $slug ) ) { + add_filter( 'plugin_action_links_' . $plugin['file_path'], array( $this, 'filter_plugin_action_links_activate' ), 20 ); } - // 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; - } + if ( true === $plugin['force_activation'] ) { + add_filter( 'plugin_action_links_' . $plugin['file_path'], array( $this, 'filter_plugin_action_links_deactivate' ), 20 ); } - // 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; - } + if ( false !== $this->does_plugin_require_update( $slug ) ) { + add_filter( 'plugin_action_links_' . $plugin['file_path'], array( $this, 'filter_plugin_action_links_update' ), 20 ); } } } + /** + * Remove the 'Activate' link on the WP native plugins page if the plugin does not meet the + * minimum version requirements. + * + * @since 2.5.0 + * + * @param array $actions Action links. + * @return array + */ + public function filter_plugin_action_links_activate( $actions ) { + unset( $actions['activate'] ); + + return $actions; + } + + /** + * Remove the 'Deactivate' link on the WP native plugins page if the plugin has been set to force activate. + * + * @since 2.5.0 + * + * @param array $actions Action links. + * @return array + */ + public function filter_plugin_action_links_deactivate( $actions ) { + unset( $actions['deactivate'] ); + + return $actions; + } + + /** + * Add a 'Requires update' link on the WP native plugins page if the plugin does not meet the + * minimum version requirements. + * + * @since 2.5.0 + * + * @param array $actions Action links. + * @return array + */ + public function filter_plugin_action_links_update( $actions ) { + $actions['update'] = sprintf( + '%3$s', + esc_url( $this->get_tgmpa_status_url( 'update' ) ), + esc_attr__( 'This plugin needs to be updated to be compatible with your theme.', 'tgmpa' ), + esc_html__( 'Update Required', 'tgmpa' ) + ); + + return $actions; + } + /** * Handles calls to show plugin information via links in the notices. * @@ -262,32 +604,38 @@ public function init() { * 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 - + * WP does not 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... * + * Returns early if not the TGMPA page. + * * @since 2.1.0 * - * @global string $tab Used as iframe div class names, helps with styling + * @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()) { + 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(). + if ( isset( $_REQUEST['tab'] ) && 'plugin-information' === $_REQUEST['tab'] ) { + // Needed for install_plugin_information(). + require_once ABSPATH . 'wp-admin/includes/plugin-install.php'; - wp_enqueue_style('plugin-install'); + wp_enqueue_style( 'plugin-install' ); global $tab, $body_id; - $body_id = $tab = 'plugin-information'; + $body_id = 'plugin-information'; + // @codingStandardsIgnoreStart + $tab = 'plugin-information'; + // @codingStandardsIgnoreEnd install_plugin_information(); @@ -296,7 +644,7 @@ public function admin_init() { } /** - * Enqueues thickbox scripts/styles for plugin info. + * Enqueue thickbox scripts/styles for plugin info. * * Thickbox is not automatically included on all admin pages, so we must * manually enqueue it for those pages. @@ -307,14 +655,13 @@ public function admin_init() { * @since 2.1.0 */ public function thickbox() { - - if(!get_user_meta(get_current_user_id(), 'tgmpa_dismissed_notice', TRUE)) { + if ( ! get_user_meta( get_current_user_id(), 'tgmpa_dismissed_notice_' . $this->id, true ) ) { add_thickbox(); } } /** - * Adds submenu page under 'Appearance' tab. + * Adds submenu page if there are plugin actions to take. * * This method adds the submenu page letting users know that a required * plugin needs to be installed. @@ -323,29 +670,51 @@ public function thickbox() { * * @since 1.0.0 * - * @see TGM_Plugin_Activation::init() - * @see TGM_Plugin_Activation::install_plugins_page() + * @see TGM_Plugin_Activation::init() + * @see TGM_Plugin_Activation::install_plugins_page() + * + * @return null Return early if user lacks capability to install a plugin. */ public function admin_menu() { - - // Make sure privileges are correct to see the page - if(!current_user_can('install_plugins')) { + // Make sure privileges are correct to see the page. + if ( ! current_user_can( 'install_plugins' ) ) { return; } - $this->populate_file_path(); + $args = apply_filters( + 'tgmpa_admin_menu_args', + array( + 'parent_slug' => $this->parent_slug, // Parent Menu slug. + 'page_title' => $this->strings['page_title'], // Page title. + 'menu_title' => $this->strings['menu_title'], // Menu title. + 'capability' => $this->capability, // Capability. + 'menu_slug' => $this->menu, // Menu slug. + 'function' => array( $this, 'install_plugins_page' ), // Callback. + ) + ); + + $this->add_admin_menu( $args ); + } - foreach($this->plugins as $plugin) { - if(!is_plugin_active($plugin['file_path'])) { - add_theme_page( - $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; - } + /** + * Add the menu item. + * + * {@internal IMPORTANT! If this function changes, review the regex in the custom TGMPA + * generator on the website.}} + * + * @since 2.5.0 + * + * @param array $args Menu item configuration. + */ + protected function add_admin_menu( array $args ) { + if ( has_filter( 'tgmpa_admin_menu_use_add_theme_page' ) ) { + _deprecated_function( 'The "tgmpa_admin_menu_use_add_theme_page" filter', '2.5.0', esc_html__( 'Set the parent_slug config variable instead.', 'tgmpa' ) ); + } + + if ( 'themes.php' === $this->parent_slug ) { + $this->page_hook = call_user_func( 'add_theme_page', $args['page_title'], $args['menu_title'], $args['capability'], $args['menu_slug'], $args['function'] ); + } else { + $this->page_hook = call_user_func( 'add_submenu_page', $args['parent_slug'], $args['page_title'], $args['menu_title'], $args['capability'], $args['menu_slug'], $args['function'] ); } } @@ -354,44 +723,47 @@ public function admin_menu() { * * 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. + * Aborts early if we're processing a plugin installation action. * * @since 1.0.0 * - * @return null Aborts early if we're processing a plugin installation action + * @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['action']) && 'tgmpa-bulk-install' == $_POST['action'] && $plugin_table->process_bulk_actions() || $this->do_plugin_install()) { + if ( ( ( 'tgmpa-bulk-install' === $plugin_table->current_action() || 'tgmpa-bulk-update' === $plugin_table->current_action() ) && $plugin_table->process_bulk_actions() ) || $this->do_plugin_install() ) { return; } + // Force refresh of available plugin information so we'll know about manual updates/deletes. + wp_clean_plugins_cache( false ); + ?>
- wp_version, '3.8', '<')) { - screen_icon(apply_filters('tgmpa_default_screen_icon', 'themes')); - } ?> -

+

prepare_items(); ?> - message)) { - echo wp_kses_post($this->message); - } ?> + message ) && is_string( $this->message ) ) { + echo wp_kses_post( $this->message ); + } + ?> + views(); ?>
- + + display(); ?>
- sanitize_key( urldecode( $_GET['plugin'] ) ); - // Checks for actions from hover links to process the installation. - if(isset($_GET['plugin']) && (isset($_GET['tgmpa-install']) && 'install-plugin' == $_GET['tgmpa-install'])) { - check_admin_referer('tgmpa-install'); + if ( ! isset( $this->plugins[ $slug ] ) ) { + return false; + } + + // Was an install or upgrade action link clicked? + if ( ( isset( $_GET['tgmpa-install'] ) && 'install-plugin' === $_GET['tgmpa-install'] ) || ( isset( $_GET['tgmpa-update'] ) && 'update-plugin' === $_GET['tgmpa-update'] ) ) { + + $install_type = 'install'; + if ( isset( $_GET['tgmpa-update'] ) && 'update-plugin' === $_GET['tgmpa-update'] ) { + $install_type = 'update'; + } - $plugin['name'] = $_GET['plugin_name']; // Plugin name. - $plugin['slug'] = $_GET['plugin']; // Plugin slug. - $plugin['source'] = $_GET['plugin_source']; // Plugin source. + check_admin_referer( 'tgmpa-' . $install_type, 'tgmpa-nonce' ); - // Pass all necessary information via URL if WP_Filesystem is needed. + // Pass 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', + 'plugin' => urlencode( $slug ), + 'tgmpa-' . $install_type => $install_type . '-plugin', ), - network_admin_url('themes.php') + $this->get_tgmpa_url() ), - 'tgmpa-install' + 'tgmpa-' . $install_type, + 'tgmpa-nonce' ); + $method = ''; // Leave blank so WP_Filesystem can populate it as necessary. - $fields = array('tgmpa-install'); // Extra fields to pass to WP_Filesystem. - if(FALSE === ($creds = request_filesystem_credentials($url, $method, FALSE, FALSE, $fields))) { - return TRUE; + if ( false === ( $creds = request_filesystem_credentials( esc_url_raw( $url ), $method, false, false, array() ) ) ) { + return true; } - if(!WP_Filesystem($creds)) { - request_filesystem_credentials($url, $method, TRUE, FALSE, $fields); // Setup WP_Filesystem. - return TRUE; + if ( ! WP_Filesystem( $creds ) ) { + request_filesystem_credentials( esc_url_raw( $url ), $method, true, false, array() ); // 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. + /* If we arrive here, we have the filesystem. */ - // 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))); + // Prep variables for Plugin_Installer_Skin class. + $extra = array(); + $extra['slug'] = $slug; // Needed for potentially renaming of directory name. + $source = $this->get_download_url( $slug ); + $api = ( 'repo' === $this->plugins[ $slug ]['source_type'] ) ? $this->get_plugins_api( $slug ) : null; + $api = ( false !== $api ) ? $api : null; - if(is_wp_error($api)) { - wp_die($this->strings['oops'].var_dump($api)); - } + $url = add_query_arg( + array( + 'action' => $install_type . '-plugin', + 'plugin' => urlencode( $slug ), + ), + 'update.php' + ); - if(isset($api->download_link)) { - $plugin['source'] = $api->download_link; - } + if ( ! class_exists( 'Plugin_Upgrader', false ) ) { + require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; } - // Set type, based on whether the source starts with http:// or https://. - $type = preg_match('|^http(s)?://|', $plugin['source']) ? 'web' : 'upload'; + $title = ( 'update' === $install_type ) ? $this->strings['updating'] : $this->strings['installing']; + $skin_args = array( + 'type' => ( 'bundled' !== $this->plugins[ $slug ]['source_type'] ) ? 'web' : 'upload', + 'title' => sprintf( $title, $this->plugins[ $slug ]['name'] ), + 'url' => esc_url_raw( $url ), + 'nonce' => $install_type . '-plugin_' . $slug, + 'plugin' => '', + 'api' => $api, + 'extra' => $extra, + ); + unset( $title ); - // 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', urlencode(stripslashes($_GET['from'])), $url); + if ( 'update' === $install_type ) { + $skin_args['plugin'] = $this->plugins[ $slug ]['file_path']; + $skin = new Plugin_Upgrader_Skin( $skin_args ); + } else { + $skin = new Plugin_Installer_Skin( $skin_args ); } - $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_Skin(compact('type', 'title', 'url', 'nonce', 'plugin', 'api'))); + $upgrader = new Plugin_Upgrader( $skin ); // Perform the action and install the plugin from the $source urldecode(). - $upgrader->install($source); + add_filter( 'upgrader_source_selection', array( $this, 'maybe_adjust_source_dir' ), 1, 3 ); - // Flush plugins cache so we can make sure that the installed plugins list is always up to date. - wp_cache_flush(); + if ( 'update' === $install_type ) { + // Inject our info into the update transient. + $to_inject = array( $slug => $this->plugins[ $slug ] ); + $to_inject[ $slug ]['source'] = $source; + $this->inject_update_info( $to_inject ); - // 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. + $upgrader->upgrade( $this->plugins[ $slug ]['file_path'] ); + } else { + $upgrader->install( $source ); + } - if(is_wp_error($activate)) { - echo '

'.$activate->get_error_message().'

'; - echo '

'.$this->strings['return'].'

'; + remove_filter( 'upgrader_source_selection', array( $this, 'maybe_adjust_source_dir' ), 1, 3 ); - return TRUE; // End it here if there is an error with automatic activation - } else { - echo '

'.$this->strings['plugin_activated'].'

'; + // Make sure we have the correct file path now the plugin is installed/updated. + $this->populate_file_path( $slug ); + + // Only activate plugins if the config option is set to true and the plugin isn't + // already active (upgrade). + if ( $this->is_automatic && ! $this->is_plugin_active( $slug ) ) { + $plugin_activate = $upgrader->plugin_info(); // Grab the plugin info from the Plugin_Upgrader method. + if ( false === $this->activate_single_plugin( $plugin_activate, $slug, true ) ) { + return true; // Finish execution of the function early as we encountered an error. } } + $this->show_tgmpa_version(); + // 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 '

'.$this->strings['return'].'

'; - $complete[] = $plugin; - break; - } // Nothing to store. - else { - $complete[] = ''; - } + if ( $this->is_tgmpa_complete() ) { + echo '

', sprintf( esc_html( $this->strings['complete'] ), '' . esc_html__( 'Return to the Dashboard', 'tgmpa' ) . '' ), '

'; + echo ''; + } else { + echo '

', esc_html( $this->strings['return'] ), '

'; } - // Filter out any empty entries. - $complete = array_filter($complete); + return true; + } elseif ( isset( $this->plugins[ $slug ]['file_path'], $_GET['tgmpa-activate'] ) && 'activate-plugin' === $_GET['tgmpa-activate'] ) { + // Activate action link was clicked. + check_admin_referer( 'tgmpa-activate', 'tgmpa-nonce' ); - // All plugins are active, so we display the complete string and hide the plugin menu. - if(empty($complete)) { - echo '

'.sprintf($this->strings['complete'], ''.__('Return to the Dashboard', 'tgmpa').'').'

'; - echo ''; + if ( false === $this->activate_single_plugin( $this->plugins[ $slug ]['file_path'], $slug ) ) { + return true; // Finish execution of the function early as we encountered an error. } + } + + return false; + } - return TRUE; - } // Checks for actions from hover links to process the activation. - elseif(isset($_GET['plugin']) && (isset($_GET['tgmpa-activate']) && 'activate-plugin' == $_GET['tgmpa-activate'])) { - check_admin_referer('tgmpa-activate', 'tgmpa-activate-nonce'); + /** + * Inject information into the 'update_plugins' site transient as WP checks that before running an update. + * + * @since 2.5.0 + * + * @param array $plugins The plugin information for the plugins which are to be updated. + */ + public function inject_update_info( $plugins ) { + $repo_updates = get_site_transient( 'update_plugins' ); - // Populate $plugin array with necessary information. - $plugin['name'] = $_GET['plugin_name']; - $plugin['slug'] = $_GET['plugin']; - $plugin['source'] = $_GET['plugin_source']; + if ( ! is_object( $repo_updates ) ) { + $repo_updates = new stdClass; + } - $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. + foreach ( $plugins as $slug => $plugin ) { + $file_path = $plugin['file_path']; - if(is_wp_error($activate)) { - echo '

'.$activate->get_error_message().'

'; - echo '

'.$this->strings['return'].'

'; + if ( empty( $repo_updates->response[ $file_path ] ) ) { + $repo_updates->response[ $file_path ] = new stdClass; + } - 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['action'])) { - $msg = $this->strings['activated_successfully'].' '.$plugin['name'].''; - echo '

'.$msg.'

'; - } + // We only really need to set package, but let's do all we can in case WP changes something. + $repo_updates->response[ $file_path ]->slug = $slug; + $repo_updates->response[ $file_path ]->plugin = $file_path; + $repo_updates->response[ $file_path ]->new_version = $plugin['version']; + $repo_updates->response[ $file_path ]->package = $plugin['source']; + if ( empty( $repo_updates->response[ $file_path ]->url ) && ! empty( $plugin['external_url'] ) ) { + $repo_updates->response[ $file_path ]->url = $plugin['external_url']; } } - return FALSE; + set_site_transient( 'update_plugins', $repo_updates ); } /** - * Echoes required plugin notice. + * Adjust the plugin directory name if necessary. * - * 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. + * The final destination directory of a plugin is based on the subdirectory name found in the + * (un)zipped source. In some cases - most notably GitHub repository plugin downloads -, this + * subdirectory name is not the same as the expected slug and the plugin will not be recognized + * as installed. This is fixed by adjusting the temporary unzipped source subdirectory name to + * the expected plugin slug. * - * @since 1.0.0 + * @since 2.5.0 * - * @global object $current_screen - * @return null Returns early if we're on the Install page. + * @param string $source Path to upgrade/zip-file-name.tmp/subdirectory/. + * @param string $remote_source Path to upgrade/zip-file-name.tmp. + * @param \WP_Upgrader $upgrader Instance of the upgrader which installs the plugin. + * @return string $source */ - public function notices() { - - global $current_screen; - - // Remove nag on the install page. - if($this->is_tgmpa_page()) { - return; + public function maybe_adjust_source_dir( $source, $remote_source, $upgrader ) { + if ( ! $this->is_tgmpa_page() || ! is_object( $GLOBALS['wp_filesystem'] ) ) { + return $source; } - // Return early if the nag message has been dismissed. - if(get_user_meta(get_current_user_id(), 'tgmpa_dismissed_notice', TRUE)) { - return; + // Check for single file plugins. + $source_files = array_keys( $GLOBALS['wp_filesystem']->dirlist( $remote_source ) ); + if ( 1 === count( $source_files ) && false === $GLOBALS['wp_filesystem']->is_dir( $source ) ) { + return $source; } - $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; + // Multi-file plugin, let's see if the directory is correctly named. + $desired_slug = ''; + + // Figure out what the slug is supposed to be. + if ( false === $upgrader->bulk && ! empty( $upgrader->skin->options['extra']['slug'] ) ) { + $desired_slug = $upgrader->skin->options['extra']['slug']; + } else { + // Bulk installer contains less info, so fall back on the info registered here. + foreach ( $this->plugins as $slug => $plugin ) { + if ( ! empty( $upgrader->skin->plugin_names[ $upgrader->skin->i ] ) && $plugin['name'] === $upgrader->skin->plugin_names[ $upgrader->skin->i ] ) { + $desired_slug = $slug; + break; } } + unset( $slug, $plugin ); + } - // 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']; + if ( ! empty( $desired_slug ) ) { + $subdir_name = untrailingslashit( str_replace( trailingslashit( $remote_source ), '', $source ) ); + + if ( ! empty( $subdir_name ) && $subdir_name !== $desired_slug ) { + $from = untrailingslashit( $source ); + $to = trailingslashit( $remote_source ) . $desired_slug; + + if ( true === $GLOBALS['wp_filesystem']->move( $from, $to ) ) { + return trailingslashit( $to ); + } else { + return new WP_Error( 'rename_failed', esc_html__( 'The remote plugin package does not contain a folder with the desired slug and renaming did not work.', 'tgmpa' ) . ' ' . esc_html__( 'Please contact the plugin provider and ask them to package their plugin according to the WordPress guidelines.', 'tgmpa' ), array( 'found' => $subdir_name, 'expected' => $desired_slug ) ); } + } elseif ( empty( $subdir_name ) ) { + return new WP_Error( 'packaged_wrong', esc_html__( 'The remote plugin package consists of more than one file, but the files are not packaged in a folder.', 'tgmpa' ) . ' ' . esc_html__( 'Please contact the plugin provider and ask them to package their plugin according to the WordPress guidelines.', 'tgmpa' ), array( 'found' => $subdir_name, 'expected' => $desired_slug ) ); } } - // If we have notices to display, we move forward. - if(!empty($message)) { - krsort($message); // Sort messages. - $rendered = ''; // Display all nag messages as strings. + return $source; + } + + /** + * Activate a single plugin and send feedback about the result to the screen. + * + * @since 2.5.0 + * + * @param string $file_path Path within wp-plugins/ to main plugin file. + * @param string $slug Plugin slug. + * @param bool $automatic Whether this is an automatic activation after an install. Defaults to false. + * This determines the styling of the output messages. + * @return bool False if an error was encountered, true otherwise. + */ + protected function activate_single_plugin( $file_path, $slug, $automatic = false ) { + if ( $this->can_plugin_activate( $slug ) ) { + $activate = activate_plugin( $file_path ); + + if ( is_wp_error( $activate ) ) { + echo '

', wp_kses_post( $activate->get_error_message() ), '

', + '

', esc_html( $this->strings['return'] ), '

'; - // If dismissable is false and a message is set, output it now. - if(!$this->dismissable && !empty($this->dismiss_msg)) { - $rendered .= '

'.wp_kses_post($this->dismiss_msg).'

'; + return false; // End it here if there is an error with activation. + } else { + if ( ! $automatic ) { + // Make sure message doesn't display again if bulk activation is performed + // immediately after a single activation. + if ( ! isset( $_POST['action'] ) ) { // WPCS: CSRF OK. + echo '

', esc_html( $this->strings['activated_successfully'] ), ' ', esc_html( $this->plugins[ $slug ]['name'] ), '.

'; + } + } else { + // Simpler message layout for use on the plugin install page. + echo '

', esc_html( $this->strings['plugin_activated'] ), '

'; + } + } + } elseif ( $this->is_plugin_active( $slug ) ) { + // No simpler message format provided as this message should never be encountered + // on the plugin install page. + echo '

', + sprintf( + esc_html( $this->strings['plugin_already_active'] ), + '' . esc_html( $this->plugins[ $slug ]['name'] ) . '' + ), + '

'; + } elseif ( $this->does_plugin_require_update( $slug ) ) { + if ( ! $automatic ) { + // Make sure message doesn't display again if bulk activation is performed + // immediately after a single activation. + if ( ! isset( $_POST['action'] ) ) { // WPCS: CSRF OK. + echo '

', + sprintf( + esc_html( $this->strings['plugin_needs_higher_version'] ), + '' . esc_html( $this->plugins[ $slug ]['name'] ) . '' + ), + '

'; + } + } else { + // Simpler message layout for use on the plugin install page. + echo '

', sprintf( esc_html( $this->strings['plugin_needs_higher_version'] ), esc_html( $this->plugins[ $slug ]['name'] ) ), '

'; } + } + + return true; + } + + /** + * 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. + * + * Returns early if we're on the Install page. + * + * @since 1.0.0 + * + * @global object $current_screen + * + * @return null Returns early if we're on the Install page. + */ + public function notices() { + // Remove nag on the install page / Return early if the nag message has been dismissed or user < author. + if ( $this->is_tgmpa_page() || get_user_meta( get_current_user_id(), 'tgmpa_dismissed_notice_' . $this->id, true ) || ! current_user_can( apply_filters( 'tgmpa_show_admin_notice_capability', 'publish_posts' ) ) ) { + return; + } - // Grab all plugin names. - foreach($message as $type => $plugin_groups) { - $linked_plugin_groups = array(); + // Store for the plugin slugs by message type. + $message = array(); - // Count number of plugins in each message group to calculate singular/plural message. - $count = count($plugin_groups); + // Initialize counters used to determine plurality of action link texts. + $install_link_count = 0; + $update_link_count = 0; + $activate_link_count = 0; + $total_required_action_count = 0; - // 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'); + foreach ( $this->plugins as $slug => $plugin ) { + if ( $this->is_plugin_active( $slug ) && false === $this->does_plugin_have_update( $slug ) ) { + continue; + } - if($external_url && preg_match('|^http(s)?://|', $external_url)) { - $linked_plugin_groups[] = ''.$plugin_group_single_name.''; - } 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', - ), - network_admin_url('plugin-install.php') - ); + if ( ! $this->is_plugin_installed( $slug ) ) { + if ( current_user_can( 'install_plugins' ) ) { + $install_link_count++; - $linked_plugin_groups[] = ''.$plugin_group_single_name.''; + if ( true === $plugin['required'] ) { + $message['notice_can_install_required'][] = $slug; } else { - $linked_plugin_groups[] = $plugin_group_single_name; // No hyperlink. + $message['notice_can_install_recommended'][] = $slug; } - - if(isset($linked_plugin_groups) && (array) $linked_plugin_groups) { - $plugin_groups = $linked_plugin_groups; + } + if ( true === $plugin['required'] ) { + $total_required_action_count++; + } + } else { + if ( ! $this->is_plugin_active( $slug ) && $this->can_plugin_activate( $slug ) ) { + if ( current_user_can( 'activate_plugins' ) ) { + $activate_link_count++; + + if ( true === $plugin['required'] ) { + $message['notice_can_activate_required'][] = $slug; + } else { + $message['notice_can_activate_recommended'][] = $slug; + } + } + if ( true === $plugin['required'] ) { + $total_required_action_count++; } } - $last_plugin = array_pop($plugin_groups); // Pop off last name to prep for readability. - $imploded = empty($plugin_groups) ? ''.$last_plugin.'' : ''.(implode(', ', $plugin_groups).' and '.$last_plugin.''); + if ( $this->does_plugin_require_update( $slug ) || false !== $this->does_plugin_have_update( $slug ) ) { + + if ( current_user_can( 'update_plugins' ) ) { + $update_link_count++; - $rendered .= '

'.sprintf(translate_nooped_plural($this->strings[$type], $count, 'tgmpa'), $imploded, $count).'

'; + if ( $this->does_plugin_require_update( $slug ) ) { + $message['notice_ask_to_update'][] = $slug; + } elseif ( false !== $this->does_plugin_have_update( $slug ) ) { + $message['notice_ask_to_update_maybe'][] = $slug; + } + } + if ( true === $plugin['required'] ) { + $total_required_action_count++; + } + } } + } + unset( $slug, $plugin ); - // Setup variables to determine if action links are needed. - $show_install_link = $install_link ? ''.translate_nooped_plural($this->strings['install_link'], $install_link_count, 'tgmpa').'' : ''; - $show_activate_link = $activate_link ? ''.translate_nooped_plural($this->strings['activate_link'], $activate_link_count, 'tgmpa').'' : ''; + // If we have notices to display, we move forward. + if ( ! empty( $message ) || $total_required_action_count > 0 ) { + krsort( $message ); // Sort messages. + $rendered = ''; - // 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' => $this->dismissable ? ''.$this->strings['dismiss'].'' : '', - ) - ); + // As add_settings_error() wraps the final message in a

and as the final message can't be + // filtered, using

's in our html would render invalid html output. + $line_template = '%s' . "\n"; + + if ( ! current_user_can( 'activate_plugins' ) && ! current_user_can( 'install_plugins' ) && ! current_user_can( 'update_plugins' ) ) { + $rendered = esc_html__( $this->strings['notice_cannot_install_activate'] ) . ' ' . esc_html__( $this->strings['contact_admin'] ); + $rendered .= $this->create_user_action_links_for_notice( 0, 0, 0, $line_template ); + } else { + + // If dismissable is false and a message is set, output it now. + if ( ! $this->dismissable && ! empty( $this->dismiss_msg ) ) { + $rendered .= sprintf( $line_template, wp_kses_post( $this->dismiss_msg ) ); + } + + // Render the individual message lines for the notice. + foreach ( $message as $type => $plugin_group ) { + $linked_plugins = array(); + + // Get the external info link for a plugin if one is available. + foreach ( $plugin_group as $plugin_slug ) { + $linked_plugins[] = $this->get_info_link( $plugin_slug ); + } + unset( $plugin_slug ); + + $count = count( $plugin_group ); + $linked_plugins = array_map( array( 'TGMPA_Utils', 'wrap_in_em' ), $linked_plugins ); + $last_plugin = array_pop( $linked_plugins ); // Pop off last name to prep for readability. + $imploded = empty( $linked_plugins ) ? $last_plugin : ( implode( ', ', $linked_plugins ) . ' ' . esc_html_x( 'and', 'plugin A *and* plugin B', 'tgmpa' ) . ' ' . $last_plugin ); + + $rendered .= sprintf( + $line_template, + sprintf( + translate_nooped_plural( $this->strings[ $type ], $count, 'tgmpa' ), + $imploded, + $count + ) + ); - $action_links = array_filter($action_links); // Remove any empty array items. - if($action_links) { - $rendered .= '

'.implode(' | ', $action_links).'

'; + } + unset( $type, $plugin_group, $linked_plugins, $count, $last_plugin, $imploded ); + + $rendered .= $this->create_user_action_links_for_notice( $install_link_count, $update_link_count, $activate_link_count, $line_template ); } // Register the nag messages and prepare them to be processed. - $nag_class = version_compare($this->wp_version, '3.8', '<') ? 'updated' : 'update-nag'; - if(!empty($this->strings['nag_type'])) { - add_settings_error('tgmpa', 'tgmpa', $rendered, sanitize_html_class(strtolower($this->strings['nag_type']))); + add_settings_error( 'tgmpa', 'tgmpa', $rendered, $this->get_admin_notice_class() ); + } + + // Admin options pages already output settings_errors, so this is to avoid duplication. + if ( 'options-general' !== $GLOBALS['current_screen']->parent_base ) { + $this->display_settings_errors(); + } + } + + /** + * Generate the user action links for the admin notice. + * + * @since 2.x.x + * + * @param int $install_count Number of plugins to install. + * @param int $update_count Number of plugins to update. + * @param int $activate_count Number of plugins to activate. + * @param int $line_template Template for the HTML tag to output a line. + * @return string Action links. + */ + protected function create_user_action_links_for_notice( $install_count, $update_count, $activate_count, $line_template ) { + // Setup action links. + $action_links = array( + 'install' => '', + 'update' => '', + 'activate' => '', + 'dismiss' => $this->dismissable ? '' . esc_html( $this->strings['dismiss'] ) . '' : '', + ); + + $link_template = '%1$s'; + + if ( current_user_can( 'install_plugins' ) ) { + if ( $install_count > 0 ) { + $action_links['install'] = sprintf( + $link_template, + translate_nooped_plural( $this->strings['install_link'], $install_count, 'tgmpa' ), + esc_url( $this->get_tgmpa_status_url( 'install' ) ) + ); + } + if ( $update_count > 0 ) { + $action_links['update'] = sprintf( + $link_template, + translate_nooped_plural( $this->strings['update_link'], $update_count, 'tgmpa' ), + esc_url( $this->get_tgmpa_status_url( 'update' ) ) + ); + } + } + + if ( current_user_can( 'activate_plugins' ) && $activate_count > 0 ) { + $action_links['activate'] = sprintf( + $link_template, + translate_nooped_plural( $this->strings['activate_link'], $activate_count, 'tgmpa' ), + esc_url( $this->get_tgmpa_status_url( 'activate' ) ) + ); + } + + $action_links = apply_filters( 'tgmpa_notice_action_links', $action_links ); + + $action_links = array_filter( (array) $action_links ); // Remove any empty array items. + + if ( ! empty( $action_links ) ) { + $action_links = sprintf( $line_template, implode( ' | ', $action_links ) ); + return apply_filters( 'tgmpa_notice_rendered_action_links', $action_links ); + } else { + return ''; + } + } + + /** + * Get admin notice class. + * + * Work around all the changes to the various admin notice classes between WP 4.4 and 3.7 + * (lowest supported version by TGMPA). + * + * @since 2.x.x + * + * @return string + */ + protected function get_admin_notice_class() { + if ( ! empty( $this->strings['nag_type'] ) ) { + return sanitize_html_class( strtolower( $this->strings['nag_type'] ) ); + } else { + if ( version_compare( $this->wp_version, '4.2', '>=' ) ) { + return 'notice-warning'; + } elseif ( version_compare( $this->wp_version, '4.1', '>=' ) ) { + return 'notice'; } else { - add_settings_error('tgmpa', 'tgmpa', $rendered, $nag_class); + return 'updated'; } } + } - // Admin options pages already output settings_errors, so this is to avoid duplication. - if('options-general' !== $current_screen->parent_base) { - settings_errors('tgmpa'); + /** + * Display settings errors and remove those which have been displayed to avoid duplicate messages showing + * + * @since 2.5.0 + */ + protected function display_settings_errors() { + global $wp_settings_errors; + + settings_errors( 'tgmpa' ); + + foreach ( (array) $wp_settings_errors as $key => $details ) { + if ( 'tgmpa' === $details['setting'] ) { + unset( $wp_settings_errors[ $key ] ); + break; + } } } /** - * Add dismissable admin notices. + * Register dismissal of admin notices. * - * Appends a link to the admin nag messages. If clicked, the admin notice disappears and no longer is visible to users. + * Acts on the dismiss link in the admin nag messages. + * If clicked, the admin notice disappears and will no longer be visible to this user. * * @since 2.1.0 */ public function dismiss() { - - if(isset($_GET['tgmpa-dismiss'])) { - update_user_meta(get_current_user_id(), 'tgmpa_dismissed_notice', 1); + if ( isset( $_GET['tgmpa-dismiss'] ) && check_admin_referer( 'tgmpa-dismiss-' . get_current_user_id() ) ) { + update_user_meta( get_current_user_id(), 'tgmpa_dismissed_notice_' . $this->id, 1 ); } } @@ -758,21 +1347,108 @@ public function dismiss() { * * @since 2.0.0 * - * @param array $plugin Array of plugin arguments. + * @param array|null $plugin Array of plugin arguments or null if invalid argument. + * @return null Return early if incorrect argument. */ - public function register($plugin) { + public function register( $plugin ) { + if ( empty( $plugin['slug'] ) || empty( $plugin['name'] ) ) { + return; + } - if(!isset($plugin['slug']) || !isset($plugin['name'])) { + if ( empty( $plugin['slug'] ) || ! is_string( $plugin['slug'] ) || isset( $this->plugins[ $plugin['slug'] ] ) ) { return; } - foreach($this->plugins as $registered_plugin) { - if($plugin['slug'] == $registered_plugin['slug']) { - return; - } + $defaults = array( + 'name' => '', // String + 'slug' => '', // String + 'source' => 'repo', // String + 'required' => false, // Boolean + 'version' => '', // String + 'force_activation' => false, // Boolean + 'force_deactivation' => false, // Boolean + 'external_url' => '', // String + 'is_callable' => '', // String|Array. + ); + + // Prepare the received data. + $plugin = wp_parse_args( $plugin, $defaults ); + + // Standardize the received slug. + $plugin['slug'] = $this->sanitize_key( $plugin['slug'] ); + + // Forgive users for using string versions of booleans or floats for version number. + $plugin['version'] = (string) $plugin['version']; + $plugin['source'] = empty( $plugin['source'] ) ? 'repo' : $plugin['source']; + $plugin['required'] = TGMPA_Utils::validate_bool( $plugin['required'] ); + $plugin['force_activation'] = TGMPA_Utils::validate_bool( $plugin['force_activation'] ); + $plugin['force_deactivation'] = TGMPA_Utils::validate_bool( $plugin['force_deactivation'] ); + + // Enrich the received data. + $plugin['file_path'] = $this->_get_plugin_basename_from_slug( $plugin['slug'] ); + $plugin['source_type'] = $this->get_plugin_source_type( $plugin['source'] ); + + // Set the class properties. + $this->plugins[ $plugin['slug'] ] = $plugin; + $this->sort_order[ $plugin['slug'] ] = $plugin['name']; + + // Should we add the force activation hook ? + if ( true === $plugin['force_activation'] ) { + $this->has_forced_activation = true; + } + + // Should we add the force deactivation hook ? + if ( true === $plugin['force_deactivation'] ) { + $this->has_forced_deactivation = true; } + } + + /** + * Determine what type of source the plugin comes from. + * + * @since 2.5.0 + * + * @param string $source The source of the plugin as provided, either empty (= WP repo), a file path + * (= bundled) or an external URL. + * @return string 'repo', 'external', or 'bundled' + */ + protected function get_plugin_source_type( $source ) { + if ( 'repo' === $source || preg_match( self::WP_REPO_REGEX, $source ) ) { + return 'repo'; + } elseif ( preg_match( self::IS_URL_REGEX, $source ) ) { + return 'external'; + } else { + return 'bundled'; + } + } - $this->plugins[] = $plugin; + /** + * Sanitizes a string key. + * + * Near duplicate of WP Core `sanitize_key()`. The difference is that uppercase characters *are* + * allowed, so as not to break upgrade paths from non-standard bundled plugins using uppercase + * characters in the plugin directory path/slug. Silly them. + * + * @see https://developer.wordpress.org/reference/hooks/sanitize_key/ + * + * @since 2.5.0 + * + * @param string $key String key. + * @return string Sanitized key + */ + public function sanitize_key( $key ) { + $raw_key = $key; + $key = preg_replace( '`[^A-Za-z0-9_-]`', '', $key ); + + /** + * Filter a sanitized key string. + * + * @since 3.0.0 + * + * @param string $key Sanitized key. + * @param string $raw_key The key prior to sanitization. + */ + return apply_filters( 'tgmpa_sanitize_key', $key, $raw_key ); } /** @@ -782,18 +1458,27 @@ public function register($plugin) { * * @param array $config Array of config options to pass as class properties. */ - public function config($config) { - - $keys = array('default_path', 'has_notices', 'dismissable', 'dismiss_msg', 'menu', 'is_automatic', 'message', 'strings'); + public function config( $config ) { + $keys = array( + 'id', + 'default_path', + 'has_notices', + 'dismissable', + 'dismiss_msg', + 'menu', + 'parent_slug', + 'capability', + '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; - } + foreach ( $keys as $key ) { + if ( isset( $config[ $key ] ) ) { + if ( is_array( $config[ $key ] ) ) { + $this->$key = array_merge( $this->$key, $config[ $key ] ); } else { - $this->$key = $config[$key]; + $this->$key = $config[ $key ]; } } } @@ -805,14 +1490,12 @@ public function config($config) { * @since 2.0.0 * * @param array $install_actions Existing array of actions. - * - * @return array Amended array of actions. + * @return array Amended array of actions. */ - public function actions($install_actions) { - + public function actions( $install_actions ) { // Remove action links on the TGMPA install page. - if($this->is_tgmpa_page()) { - return FALSE; + if ( $this->is_tgmpa_page() ) { + return false; } return $install_actions; @@ -823,22 +1506,30 @@ public function actions($install_actions) { * from remaining in the plugin table. * * @since 2.4.0 + * + * @param bool $clear_update_cache Optional. Whether to clear the Plugin updates cache. + * Parameter added in v2.5.0. */ - public function flush_plugins_cache() { - - wp_cache_flush(); + public function flush_plugins_cache( $clear_update_cache = true ) { + wp_clean_plugins_cache( $clear_update_cache ); } /** * Set file_path key for each installed plugin. * * @since 2.1.0 + * + * @param string $plugin_slug Optional. If set, only (re-)populates the file path for that specific plugin. + * Parameter added in v2.5.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']); + public function populate_file_path( $plugin_slug = '' ) { + if ( ! empty( $plugin_slug ) && is_string( $plugin_slug ) && isset( $this->plugins[ $plugin_slug ] ) ) { + $this->plugins[ $plugin_slug ]['file_path'] = $this->_get_plugin_basename_from_slug( $plugin_slug ); + } else { + // Add file_path key for all plugins. + foreach ( $this->plugins as $slug => $values ) { + $this->plugins[ $slug ]['file_path'] = $this->_get_plugin_basename_from_slug( $slug ); + } } } @@ -849,15 +1540,13 @@ public function populate_file_path() { * @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. + * @return string Either file path for plugin if installed, or just the plugin slug. */ - protected function _get_plugin_basename_from_slug($slug) { + protected function _get_plugin_basename_from_slug( $slug ) { + $keys = array_keys( $this->get_plugins() ); - $keys = array_keys(get_plugins()); - - foreach($keys as $key) { - if(preg_match('|^'.$slug.'/|', $key)) { + foreach ( $keys as $key ) { + if ( preg_match( '|^' . $slug . '/|', $key ) ) { return $key; } } @@ -875,160 +1564,542 @@ protected function _get_plugin_basename_from_slug($slug) { * * @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]; + public function _get_plugin_data_from_name( $name, $data = 'slug' ) { + foreach ( $this->plugins as $values ) { + if ( $name === $values['name'] && isset( $values[ $data ] ) ) { + return $values[ $data ]; } } - return FALSE; + return false; } /** - * Determine if we're on the TGMPA Install page. + * Retrieve the download URL for a package. * - * @since 2.1.0 + * @since 2.5.0 * - * @return boolean True when on the TGMPA page, false otherwise. + * @param string $slug Plugin slug. + * @return string Plugin download URL or path to local file or empty string if undetermined. */ - protected function is_tgmpa_page() { - - if(isset($_GET['page']) && $this->menu === $_GET['page']) { - return TRUE; + public function get_download_url( $slug ) { + $dl_source = ''; + + switch ( $this->plugins[ $slug ]['source_type'] ) { + case 'repo': + return $this->get_wp_repo_download_url( $slug ); + case 'external': + return $this->plugins[ $slug ]['source']; + case 'bundled': + return $this->default_path . $this->plugins[ $slug ]['source']; } - return FALSE; + return $dl_source; // Should never happen. } /** - * Delete dismissable nag option when theme is switched. + * Retrieve the download URL for a WP repo package. * - * This ensures that the user is again reminded via nag of required - * and/or recommended plugins if they re-activate the theme. + * @since 2.5.0 * - * @since 2.1.1 + * @param string $slug Plugin slug. + * @return string Plugin download URL. */ - public function update_dismiss() { + protected function get_wp_repo_download_url( $slug ) { + $source = ''; + $api = $this->get_plugins_api( $slug ); + + if ( false !== $api && isset( $api->download_link ) ) { + $source = $api->download_link; + } - delete_user_meta(get_current_user_id(), 'tgmpa_dismissed_notice'); + return $source; } /** - * 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. + * Try to grab information from WordPress API. * - * 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.5.0 * - * @since 2.2.0 + * @param string $slug Plugin slug. + * @return object Plugins_api response object on success, WP_Error on failure. */ - public function force_activation() { + protected function get_plugins_api( $slug ) { + static $api = array(); // Cache received responses. + + if ( ! isset( $api[ $slug ] ) ) { + if ( ! function_exists( 'plugins_api' ) ) { + require_once ABSPATH . 'wp-admin/includes/plugin-install.php'; + } - // Set file_path parameter for any installed plugins. - $this->populate_file_path(); + $response = plugins_api( 'plugin_information', array( 'slug' => $slug, 'fields' => array( 'sections' => false ) ) ); - $installed_plugins = get_plugins(); + $api[ $slug ] = false; - 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']); + if ( is_wp_error( $response ) ) { + wp_die( esc_html( $this->strings['oops'] ) ); + } else { + $api[ $slug ] = $response; } } + + return $api[ $slug ]; } /** - * Forces plugin deactivation if the parameter 'force_deactivation' - * is set to true. + * Retrieve a link to a plugin information page. * - * This allows theme authors to specify certain plugins that must be - * deactived upon switching from the current theme to another. + * @since 2.5.0 * - * Please take special care when using this parameter as it has the - * potential to be harmful if not used correctly. + * @param string $slug Plugin slug. + * @return string Fully formed html link to a plugin information page if available + * or the plugin name if not. + */ + public function get_info_link( $slug ) { + if ( ! empty( $this->plugins[ $slug ]['external_url'] ) && preg_match( self::IS_URL_REGEX, $this->plugins[ $slug ]['external_url'] ) ) { + $link = sprintf( + '%2$s', + esc_url( $this->plugins[ $slug ]['external_url'] ), + esc_html( $this->plugins[ $slug ]['name'] ) + ); + } elseif ( 'repo' === $this->plugins[ $slug ]['source_type'] ) { + $url = add_query_arg( + array( + 'tab' => 'plugin-information', + 'plugin' => urlencode( $slug ), + 'TB_iframe' => 'true', + 'width' => '640', + 'height' => '500', + ), + self_admin_url( 'plugin-install.php' ) + ); + + $link = sprintf( + '%2$s', + esc_url( $url ), + esc_html( $this->plugins[ $slug ]['name'] ) + ); + } else { + $link = esc_html( $this->plugins[ $slug ]['name'] ); // No hyperlink. + } + + return $link; + } + + /** + * Determine if we're on the TGMPA Install page. * - * @since 2.2.0 + * @since 2.1.0 + * + * @return boolean True when on the TGMPA page, false otherwise. */ - public function force_deactivation() { + protected function is_tgmpa_page() { + return isset( $_GET['page'] ) && $this->menu === $_GET['page']; + } - // Set file_path parameter for any installed plugins. - $this->populate_file_path(); + /** + * Retrieve the URL to the TGMPA Install page. + * + * I.e. depending on the config settings passed something along the lines of: + * http://example.com/wp-admin/themes.php?page=tgmpa-install-plugins + * + * @since 2.5.0 + * + * @return string Properly encoded URL (not escaped). + */ + public function get_tgmpa_url() { + static $url; - 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']); + if ( ! isset( $url ) ) { + $parent = $this->parent_slug; + if ( false === strpos( $parent, '.php' ) ) { + $parent = 'admin.php'; } + $url = add_query_arg( + array( + 'page' => urlencode( $this->menu ), + ), + self_admin_url( $parent ) + ); } + + return $url; } /** - * Returns the singleton instance of the class. + * Retrieve the URL to the TGMPA Install page for a specific plugin status (view). * - * @since 2.4.0 + * I.e. depending on the config settings passed something along the lines of: + * http://example.com/wp-admin/themes.php?page=tgmpa-install-plugins&plugin_status=install * - * @return object The TGM_Plugin_Activation object. + * @since 2.5.0 + * + * @param string $status Plugin status - either 'install', 'update' or 'activate'. + * @return string Properly encoded URL (not escaped). */ - public static function get_instance() { + public function get_tgmpa_status_url( $status ) { + return add_query_arg( + array( + 'plugin_status' => urlencode( $status ), + ), + $this->get_tgmpa_url() + ); + } - if(!isset(self::$instance) && !(self::$instance instanceof TGM_Plugin_Activation)) { - self::$instance = new TGM_Plugin_Activation(); + /** + * Determine whether there are open actions for plugins registered with TGMPA. + * + * @since 2.5.0 + * + * @return bool True if complete, i.e. no outstanding actions. False otherwise. + */ + public function is_tgmpa_complete() { + $complete = true; + foreach ( $this->plugins as $slug => $plugin ) { + if ( ! $this->is_plugin_active( $slug ) || false !== $this->does_plugin_have_update( $slug ) ) { + $complete = false; + break; + } } - return self::$instance; + return $complete; } - } - - // Ensure only one instance of the class is ever invoked. - $tgmpa = TGM_Plugin_Activation::get_instance(); -} -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()) { + /** + * Check if a plugin is installed. Does not take must-use plugins into account. + * + * @since 2.5.0 + * + * @param string $slug Plugin slug. + * @return bool True if installed, false otherwise. + */ + public function is_plugin_installed( $slug ) { + $installed_plugins = $this->get_plugins(); // Retrieve a list of all installed plugins (WP cached). - foreach($plugins as $plugin) { - TGM_Plugin_Activation::$instance->register($plugin); + return ( ! empty( $installed_plugins[ $this->plugins[ $slug ]['file_path'] ] ) ); } - if($config) { - TGM_Plugin_Activation::$instance->config($config); + /** + * Check if a plugin is active. + * + * @since 2.5.0 + * + * @param string $slug Plugin slug. + * @return bool True if active, false otherwise. + */ + public function is_plugin_active( $slug ) { + return ( ( ! empty( $this->plugins[ $slug ]['is_callable'] ) && is_callable( $this->plugins[ $slug ]['is_callable'] ) ) || is_plugin_active( $this->plugins[ $slug ]['file_path'] ) ); } - } -} -/** - * WP_List_Table isn't always available. If it isn't available, - * we load it here. - * - * @since 2.2.0 + /** + * Check if a plugin can be updated, i.e. if we have information on the minimum WP version required + * available, check whether the current install meets them. + * + * @since 2.5.0 + * + * @param string $slug Plugin slug. + * @return bool True if OK to update, false otherwise. + */ + public function can_plugin_update( $slug ) { + // We currently can't get reliable info on non-WP-repo plugins - issue #380. + if ( 'repo' !== $this->plugins[ $slug ]['source_type'] ) { + return true; + } + + $api = $this->get_plugins_api( $slug ); + + if ( false !== $api && isset( $api->requires ) ) { + return version_compare( $this->wp_version, $api->requires, '>=' ); + } + + // No usable info received from the plugins API, presume we can update. + return true; + } + + /** + * Check to see if the plugin is 'updatetable', i.e. installed, with an update available + * and no WP version requirements blocking it. + * + * @since 2.x.x + * + * @param string $slug Plugin slug. + * @return bool True if OK to proceed with update, false otherwise. + */ + public function is_plugin_updatetable( $slug ) { + if ( ! $this->is_plugin_installed( $slug ) ) { + return false; + } else { + return ( $this->does_plugin_have_update( $slug ) && $this->can_plugin_update( $slug ) ); + } + } + + /** + * Check if a plugin can be activated, i.e. is not currently active and meets the minimum + * plugin version requirements set in TGMPA (if any). + * + * @since 2.5.0 + * + * @param string $slug Plugin slug. + * @return bool True if OK to activate, false otherwise. + */ + public function can_plugin_activate( $slug ) { + return ( ! $this->is_plugin_active( $slug ) && ! $this->does_plugin_require_update( $slug ) ); + } + + /** + * Retrieve the version number of an installed plugin. + * + * @since 2.5.0 + * + * @param string $slug Plugin slug. + * @return string Version number as string or an empty string if the plugin is not installed + * or version unknown (plugins which don't comply with the plugin header standard). + */ + public function get_installed_version( $slug ) { + $installed_plugins = $this->get_plugins(); // Retrieve a list of all installed plugins (WP cached). + + if ( ! empty( $installed_plugins[ $this->plugins[ $slug ]['file_path'] ]['Version'] ) ) { + return $installed_plugins[ $this->plugins[ $slug ]['file_path'] ]['Version']; + } + + return ''; + } + + /** + * Check whether a plugin complies with the minimum version requirements. + * + * @since 2.5.0 + * + * @param string $slug Plugin slug. + * @return bool True when a plugin needs to be updated, otherwise false. + */ + public function does_plugin_require_update( $slug ) { + $installed_version = $this->get_installed_version( $slug ); + $minimum_version = $this->plugins[ $slug ]['version']; + + return version_compare( $minimum_version, $installed_version, '>' ); + } + + /** + * Check whether there is an update available for a plugin. + * + * @since 2.5.0 + * + * @param string $slug Plugin slug. + * @return false|string Version number string of the available update or false if no update available. + */ + public function does_plugin_have_update( $slug ) { + // Presume bundled and external plugins will point to a package which meets the minimum required version. + if ( 'repo' !== $this->plugins[ $slug ]['source_type'] ) { + if ( $this->does_plugin_require_update( $slug ) ) { + return $this->plugins[ $slug ]['version']; + } + + return false; + } + + $repo_updates = get_site_transient( 'update_plugins' ); + + if ( isset( $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->new_version ) ) { + return $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->new_version; + } + + return false; + } + + /** + * Retrieve potential upgrade notice for a plugin. + * + * @since 2.5.0 + * + * @param string $slug Plugin slug. + * @return string The upgrade notice or an empty string if no message was available or provided. + */ + public function get_upgrade_notice( $slug ) { + // We currently can't get reliable info on non-WP-repo plugins - issue #380. + if ( 'repo' !== $this->plugins[ $slug ]['source_type'] ) { + return ''; + } + + $repo_updates = get_site_transient( 'update_plugins' ); + + if ( ! empty( $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->upgrade_notice ) ) { + return $repo_updates->response[ $this->plugins[ $slug ]['file_path'] ]->upgrade_notice; + } + + return ''; + } + + /** + * Wrapper around the core WP get_plugins function, making sure it's actually available. + * + * @since 2.5.0 + * + * @param string $plugin_folder Optional. Relative path to single plugin folder. + * @return array Array of installed plugins with plugin information. + */ + public function get_plugins( $plugin_folder = '' ) { + if ( ! function_exists( 'get_plugins' ) ) { + require_once ABSPATH . 'wp-admin/includes/plugin.php'; + } + + return get_plugins( $plugin_folder ); + } + + /** + * Delete dismissable nag option when theme is switched. + * + * This ensures that the user(s) is/are 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_metadata( 'user', null, 'tgmpa_dismissed_notice_' . $this->id, null, true ); + } + + /** + * 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() { + foreach ( $this->plugins as $slug => $plugin ) { + if ( true === $plugin['force_activation'] ) { + if ( ! $this->is_plugin_installed( $slug ) ) { + // Oops, plugin isn't there so iterate to next condition. + continue; + } elseif ( $this->can_plugin_activate( $slug ) ) { + // There we go, activate the plugin. + 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 + * deactivated 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() { + foreach ( $this->plugins as $slug => $plugin ) { + // Only proceed forward if the parameter is set to true and plugin is active. + if ( true === $plugin['force_deactivation'] && $this->is_plugin_active( $slug ) ) { + deactivate_plugins( $plugin['file_path'] ); + } + } + } + + /** + * Echo the current TGMPA version number to the page. + */ + public function show_tgmpa_version() { + echo '

', + esc_html( sprintf( _x( 'TGMPA v%s', '%s = version number', 'tgmpa' ), self::TGMPA_VERSION ) ), + '

'; + } + + /** + * Returns the singleton instance of the class. + * + * @since 2.4.0 + * + * @return object The TGM_Plugin_Activation object. + */ + public static function get_instance() { + if ( ! isset( self::$instance ) && ! ( self::$instance instanceof self ) ) { + self::$instance = new self(); + } + + return self::$instance; + } + } + + if ( ! function_exists( 'load_tgm_plugin_activation' ) ) { + /** + * Ensure only one instance of the class is ever invoked. + */ + function load_tgm_plugin_activation() { + $GLOBALS['tgmpa'] = TGM_Plugin_Activation::get_instance(); + } + } + + if ( did_action( 'plugins_loaded' ) ) { + load_tgm_plugin_activation(); + } else { + add_action( 'plugins_loaded', 'load_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() ) { + $instance = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) ); + + foreach ( $plugins as $plugin ) { + call_user_func( array( $instance, 'register' ), $plugin ); + } + + if ( ! empty( $config ) && is_array( $config ) ) { + // Send out notices for deprecated arguments passed. + if ( isset( $config['notices'] ) ) { + _deprecated_argument( __FUNCTION__, '2.2.0', 'The `notices` config parameter was renamed to `has_notices` in TGMPA 2.2.0. Please adjust your configuration.' ); + if ( ! isset( $config['has_notices'] ) ) { + $config['has_notices'] = $config['notices']; + } + } + + if ( isset( $config['parent_menu_slug'] ) ) { + _deprecated_argument( __FUNCTION__, '2.4.0', 'The `parent_menu_slug` config parameter was removed in TGMPA 2.4.0. In TGMPA 2.5.0 an alternative was (re-)introduced. Please adjust your configuration. For more information visit the website: http://tgmpluginactivation.com/configuration/#h-configuration-options.' ); + } + if ( isset( $config['parent_url_slug'] ) ) { + _deprecated_argument( __FUNCTION__, '2.4.0', 'The `parent_url_slug` config parameter was removed in TGMPA 2.4.0. In TGMPA 2.5.0 an alternative was (re-)introduced. Please adjust your configuration. For more information visit the website: http://tgmpluginactivation.com/configuration/#h-configuration-options.' ); + } + + call_user_func( array( $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( 'WP_List_Table' ) ) { + require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; } -if(!class_exists('TGMPA_List_Table')) { +if ( ! class_exists( 'TGMPA_List_Table' ) ) { + /** * List table class for handling plugins. * @@ -1040,169 +2111,336 @@ function tgmpa($plugins, $config = array()) { * * This class also allows for the bulk install of plugins. * - * @since 2.2.0 + * @since 2.2.0 * * @package TGM-Plugin-Activation - * @author Thomas Griffin - * @author Gary Jones + * @author Thomas Griffin + * @author Gary Jones */ class TGMPA_List_Table extends WP_List_Table { + /** + * TGMPA instance. + * + * @since 2.5.0 + * + * @var object + */ + protected $tgmpa; /** - * References parent constructor and sets defaults for class. + * The currently chosen view. * - * 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.5.0 * - * @since 2.2.0 + * @var string One of: 'all', 'install', 'update', 'activate' + */ + public $view_context = 'all'; + + /** + * The plugin counts for the various views. + * + * @since 2.5.0 * - * @global unknown $status - * @global string $page + * @var array */ - public function __construct() { + protected $view_totals = array( + 'all' => 0, + 'install' => 0, + 'update' => 0, + 'activate' => 0, + ); - global $status, $page; + /** + * References parent constructor and sets defaults for class. + * + * @since 2.2.0 + */ + public function __construct() { + $this->tgmpa = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) ); parent::__construct( array( 'singular' => 'plugin', 'plural' => 'plugins', - 'ajax' => FALSE, + 'ajax' => false, ) ); + + if ( isset( $_REQUEST['plugin_status'] ) && in_array( $_REQUEST['plugin_status'], array( 'install', 'update', 'activate' ), true ) ) { + $this->view_context = sanitize_key( $_REQUEST['plugin_status'] ); + } + + add_filter( 'tgmpa_table_data_items', array( $this, 'sort_table_items' ) ); + } + + /** + * Get a list of CSS classes for the tag. + * + * Overruled to prevent the 'plural' argument from being added. + * + * @since 2.5.0 + * + * @return array CSS classnames. + */ + public function get_table_classes() { + return array( 'widefat', 'fixed' ); } /** - * Gathers and renames all of our plugin information to be used by - * WP_List_Table to create our table. + * 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(); + $this->tgmpa->admin_init(); + $this->tgmpa->thickbox(); + + // Categorize the plugins which have open actions. + $plugins = $this->categorize_plugins_to_views(); + + // Set the counts for the view links. + $this->set_view_totals( $plugins ); // Prep variables for use and grab list of all installed plugins. $table_data = array(); - $i = 0; - $installed_plugins = get_plugins(); + $i = 0; + + // Redirect to the 'all' view if no plugins were found for the selected view context. + if ( empty( $plugins[ $this->view_context ] ) ) { + $this->view_context = 'all'; + } - 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. + foreach ( $plugins[ $this->view_context ] as $slug => $plugin ) { + $table_data[ $i ]['sanitized_plugin'] = $plugin['name']; + $table_data[ $i ]['slug'] = $slug; + $table_data[ $i ]['plugin'] = '' . $this->tgmpa->get_info_link( $slug ) . ''; + $table_data[ $i ]['source'] = $this->get_plugin_source_type_text( $plugin['source_type'] ); + $table_data[ $i ]['type'] = $this->get_plugin_advise_type_text( $plugin['required'] ); + $table_data[ $i ]['status'] = $this->get_plugin_status_text( $slug ); + $table_data[ $i ]['installed_version'] = $this->tgmpa->get_installed_version( $slug ); + $table_data[ $i ]['minimum_version'] = $plugin['version']; + $table_data[ $i ]['available_version'] = $this->tgmpa->does_plugin_have_update( $slug ); + + // Prep the upgrade notice info. + $upgrade_notice = $this->tgmpa->get_upgrade_notice( $slug ); + if ( ! empty( $upgrade_notice ) ) { + $table_data[ $i ]['upgrade_notice'] = $upgrade_notice; + + add_action( "tgmpa_after_plugin_row_$slug", array( $this, 'wp_plugin_update_row' ), 10, 2 ); } - $table_data[$i]['sanitized_plugin'] = $plugin['name']; - $table_data[$i]['slug'] = $this->_get_plugin_data_from_name($plugin['name']); + $table_data[ $i ] = apply_filters( 'tgmpa_table_data_item', $table_data[ $i ], $plugin ); - $external_url = $this->_get_plugin_data_from_name($plugin['name'], 'external_url'); - $source = $this->_get_plugin_data_from_name($plugin['name'], 'source'); + $i++; + } - if($external_url && preg_match('|^http(s)?://|', $external_url)) { - $table_data[$i]['plugin'] = ''.$plugin['name'].''; - } 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', - ), - network_admin_url('plugin-install.php') - ); + return $table_data; + } - $table_data[$i]['plugin'] = ''.$plugin['name'].''; - } else { - $table_data[$i]['plugin'] = ''.$plugin['name'].''; // No hyperlink. - } + /** + * Categorize the plugins which have open actions into views for the TGMPA page. + * + * @since 2.5.0 + */ + protected function categorize_plugins_to_views() { + $plugins = array( + 'all' => array(), // Meaning: all plugins which still have open actions. + 'install' => array(), + 'update' => array(), + 'activate' => array(), + ); - if(isset($table_data[$i]['plugin']) && (array) $table_data[$i]['plugin']) { - $plugin['name'] = $table_data[$i]['plugin']; - } + foreach ( $this->tgmpa->plugins as $slug => $plugin ) { + if ( $this->tgmpa->is_plugin_active( $slug ) && false === $this->tgmpa->does_plugin_have_update( $slug ) ) { + // No need to display plugins if they are installed, up-to-date and active. + continue; + } else { + $plugins['all'][ $slug ] = $plugin; - if(!empty($plugin['source'])) { - // The plugin must be from a private repository. - if(preg_match('|^http(s)?://|', $plugin['source'])) { - $table_data[$i]['source'] = __('Private Repository', 'tgmpa'); - // The plugin is pre-packaged with the theme. + if ( ! $this->tgmpa->is_plugin_installed( $slug ) ) { + $plugins['install'][ $slug ] = $plugin; } else { - $table_data[$i]['source'] = __('Pre-Packaged', 'tgmpa'); + if ( false !== $this->tgmpa->does_plugin_have_update( $slug ) ) { + $plugins['update'][ $slug ] = $plugin; + } + + if ( $this->tgmpa->can_plugin_activate( $slug ) ) { + $plugins['activate'][ $slug ] = $plugin; + } } - } // The plugin is from the WordPress repository. - else { - $table_data[$i]['source'] = __('WordPress Repository', 'tgmpa'); } + } - $table_data[$i]['type'] = isset($plugin['required']) && $plugin['required'] ? __('Required', 'tgmpa') : __('Recommended', 'tgmpa'); + return $plugins; + } - if(!isset($installed_plugins[$plugin['file_path']])) { - $table_data[$i]['status'] = sprintf('%1$s', __('Not Installed', 'tgmpa')); - } elseif(is_plugin_inactive($plugin['file_path'])) { - $table_data[$i]['status'] = sprintf('%1$s', __('Installed But Not Activated', 'tgmpa')); - } + /** + * Set the counts for the view links. + * + * @since 2.5.0 + * + * @param array $plugins Plugins order by view. + */ + protected function set_view_totals( $plugins ) { + foreach ( $plugins as $type => $list ) { + $this->view_totals[ $type ] = count( $list ); + } + } - $table_data[$i]['file_path'] = $plugin['file_path']; - $table_data[$i]['url'] = isset($plugin['source']) ? $plugin['source'] : 'repo'; + /** + * Get the plugin required/recommended text string. + * + * @since 2.5.0 + * + * @param string $required Plugin required setting. + * @return string + */ + protected function get_plugin_advise_type_text( $required ) { + if ( true === $required ) { + return __( 'Required', 'tgmpa' ); + } - $i++; + return __( 'Recommended', 'tgmpa' ); + } + + /** + * Get the plugin source type text string. + * + * @since 2.5.0 + * + * @param string $type Plugin type. + * @return string + */ + protected function get_plugin_source_type_text( $type ) { + $string = ''; + + switch ( $type ) { + case 'repo': + $string = __( 'WordPress Repository', 'tgmpa' ); + break; + case 'external': + $string = __( 'External Source', 'tgmpa' ); + break; + case 'bundled': + $string = __( 'Pre-Packaged', 'tgmpa' ); + break; } - // Sort plugins by Required/Recommended type and by alphabetical listing within each type. - $resort = array(); - $req = array(); - $rec = array(); + return $string; + } - // Grab all the plugin types. - foreach($table_data as $plugin) { - $resort[] = $plugin['type']; + /** + * Determine the plugin status message. + * + * @since 2.5.0 + * + * @param string $slug Plugin slug. + * @return string + */ + protected function get_plugin_status_text( $slug ) { + if ( ! $this->tgmpa->is_plugin_installed( $slug ) ) { + return __( 'Not Installed', 'tgmpa' ); } - // Sort each plugin by type. - foreach($resort as $type) { - if('Required' == $type) { - $req[] = $type; - } else { - $rec[] = $type; - } + if ( ! $this->tgmpa->is_plugin_active( $slug ) ) { + $install_status = __( 'Installed But Not Activated', 'tgmpa' ); + } else { + $install_status = __( 'Active', 'tgmpa' ); } - // 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($resort, SORT_DESC, $table_data); + $update_status = ''; - return $table_data; + if ( $this->tgmpa->does_plugin_require_update( $slug ) && false === $this->tgmpa->does_plugin_have_update( $slug ) ) { + $update_status = __( 'Required Update not Available', 'tgmpa' ); + + } elseif ( $this->tgmpa->does_plugin_require_update( $slug ) ) { + $update_status = __( 'Requires Update', 'tgmpa' ); + + } elseif ( false !== $this->tgmpa->does_plugin_have_update( $slug ) ) { + $update_status = __( 'Update recommended', 'tgmpa' ); + } + + if ( '' === $update_status ) { + return $install_status; + } + + return sprintf( + _x( '%1$s, %2$s', '%1$s = install status, %2$s = update status', 'tgmpa' ), + $install_status, + $update_status + ); } /** - * Retrieve plugin data, given the plugin name. Taken from the - * TGM_Plugin_Activation class. + * Sort plugins by Required/Recommended type and by alphabetical plugin name within each type. * - * Loops through the registered plugins looking for $name. If it finds it, - * it returns the $data from that plugin. Otherwise, returns false. + * @since 2.5.0 * - * @since 2.2.0 + * @param array $items Prepared table items. + * @return array Sorted table items. + */ + public function sort_table_items( $items ) { + $type = array(); + $name = array(); + + foreach ( $items as $i => $plugin ) { + $type[ $i ] = $plugin['type']; // Required / recommended. + $name[ $i ] = $plugin['sanitized_plugin']; + } + + array_multisort( $type, SORT_DESC, $name, SORT_ASC, $items ); + + return $items; + } + + /** + * Get an associative array ( id => link ) of the views available on this table. * - * @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. + * @since 2.5.0 * - * @return string|boolean Plugin slug if found, false otherwise. + * @return array */ - protected function _get_plugin_data_from_name($name, $data = 'slug') { + public function get_views() { + $status_links = array(); - foreach(TGM_Plugin_Activation::$instance->plugins as $plugin => $values) { - if($name == $values['name'] && isset($values[$data])) { - return $values[$data]; + foreach ( $this->view_totals as $type => $count ) { + if ( $count < 1 ) { + continue; + } + + switch ( $type ) { + case 'all': + $text = _nx( 'All (%s)', 'All (%s)', $count, 'plugins', 'tgmpa' ); + break; + case 'install': + $text = _n( 'To Install (%s)', 'To Install (%s)', $count, 'tgmpa' ); + break; + case 'update': + $text = _n( 'Update Available (%s)', 'Update Available (%s)', $count, 'tgmpa' ); + break; + case 'activate': + $text = _n( 'To Activate (%s)', 'To Activate (%s)', $count, 'tgmpa' ); + break; + default: + $text = ''; + break; + } + + if ( ! empty( $text ) ) { + + $status_links[ $type ] = sprintf( + '%s', + esc_url( $this->tgmpa->get_tgmpa_status_url( $type ) ), + ( $type === $this->view_context ) ? ' class="current"' : '', + sprintf( $text, number_format_i18n( $count ) ) + ); } } - return FALSE; + return $status_links; } /** @@ -1213,97 +2451,98 @@ protected function _get_plugin_data_from_name($name, $data = 'slug') { * * @param array $item Array of item data. * @param string $column_name The name of the column. + * @return string */ - public function column_default($item, $column_name) { - - switch($column_name) { - case 'source': - case 'type': - case 'status': - return $item[$column_name]; - } + public function column_default( $item, $column_name ) { + return $item[ $column_name ]; } /** - * Create default title column along with action links of 'Install' - * and 'Activate'. + * Required for bulk installing. + * + * Adds a checkbox for each plugin. * * @since 2.2.0 * * @param array $item Array of item data. - * - * @return string The action hover links. + * @return string The input checkbox with all necessary info. */ - 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( - ''.__('Install', 'tgmpa').'', - 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', - ), - network_admin_url('themes.php') - ), - 'tgmpa-install' - ), - $item['sanitized_plugin'] - ), - ); - } // We need to display the 'Activate' hover link. - elseif(is_plugin_inactive($item['file_path'])) { - $actions = array( - 'activate' => sprintf( - ''.__('Activate', 'tgmpa').'', - 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'), - ), - network_admin_url('themes.php') - ), - $item['sanitized_plugin'] - ), - ); - } - - return sprintf('%1$s %2$s', $item['plugin'], $this->row_actions($actions)); + public function column_cb( $item ) { + return sprintf( + '', + esc_attr( $this->_args['singular'] ), + esc_attr( $item['slug'] ), + esc_attr( $item['sanitized_plugin'] ) + ); } /** - * Required for bulk installing. - * - * Adds a checkbox for each plugin. + * Create default title column along with the action links. * * @since 2.2.0 * * @param array $item Array of item data. + * @return string The plugin name and action links. + */ + public function column_plugin( $item ) { + return sprintf( + '%1$s %2$s', + $item['plugin'], + $this->row_actions( $this->get_row_actions( $item ), true ) + ); + } + + /** + * Create version information column. * - * @return string The input checkbox with all necessary info. + * @since 2.5.0 + * + * @param array $item Array of item data. + * @return string HTML-formatted version information. */ - public function column_cb($item) { + public function column_version( $item ) { + $output = array(); + + if ( $this->tgmpa->is_plugin_installed( $item['slug'] ) ) { + $installed = ! empty( $item['installed_version'] ) ? $item['installed_version'] : _x( 'unknown', 'as in: "version nr unknown"', 'tgmpa' ); + + $color = ''; + if ( ! empty( $item['minimum_version'] ) && $this->tgmpa->does_plugin_require_update( $item['slug'] ) ) { + $color = ' color: #ff0000; font-weight: bold;'; + } + + $output[] = sprintf( + '

%2$s' . __( 'Installed version:', 'tgmpa' ) . '

', + $color, + $installed + ); + } + + if ( ! empty( $item['minimum_version'] ) ) { + $output[] = sprintf( + '

%1$s' . __( 'Minimum required version:', 'tgmpa' ) . '

', + $item['minimum_version'] + ); + } - $value = $item['file_path'].','.$item['url'].','.$item['sanitized_plugin']; + if ( ! empty( $item['available_version'] ) ) { + $color = ''; + if ( ! empty( $item['minimum_version'] ) && version_compare( $item['available_version'], $item['minimum_version'], '>=' ) ) { + $color = ' color: #71C671; font-weight: bold;'; + } - return sprintf('', $this->_args['singular'], $value, $item['sanitized_plugin']); + $output[] = sprintf( + '

%2$s' . __( 'Available version:', 'tgmpa' ) . '

', + $color, + $item['available_version'] + ); + } + + if ( empty( $output ) ) { + return ' '; // Let's not break the table layout. + } else { + return implode( "\n", $output ); + } } /** @@ -1316,8 +2555,7 @@ public function column_cb($item) { * @since 2.2.0 */ public function no_items() { - - printf(__('No plugins to install or activate. Return to the Dashboard', 'tgmpa'), network_admin_url()); + printf( wp_kses_post( __( 'No plugins to install, update or activate. Return to the Dashboard', 'tgmpa' ) ), esc_url( self_admin_url() ) ); echo ''; } @@ -1329,21 +2567,164 @@ public function no_items() { * @return array $columns The column names. */ public function get_columns() { - $columns = array( 'cb' => '', - 'plugin' => __('Plugin', 'tgmpa'), - 'source' => __('Source', 'tgmpa'), - 'type' => __('Type', 'tgmpa'), - 'status' => __('Status', 'tgmpa') + 'plugin' => __( 'Plugin', 'tgmpa' ), + 'source' => __( 'Source', 'tgmpa' ), + 'type' => __( 'Type', 'tgmpa' ), ); - return $columns; + if ( 'all' === $this->view_context || 'update' === $this->view_context ) { + $columns['version'] = __( 'Version', 'tgmpa' ); + $columns['status'] = __( 'Status', 'tgmpa' ); + } + + return apply_filters( 'tgmpa_table_columns', $columns ); + } + + /** + * Get name of default primary column + * + * @since 2.5.0 / WP 4.3+ compatibility + * @access protected + * + * @return string + */ + protected function get_default_primary_column_name() { + return 'plugin'; + } + + /** + * Get the name of the primary column. + * + * @since 2.5.0 / WP 4.3+ compatibility + * @access protected + * + * @return string The name of the primary column. + */ + protected function get_primary_column_name() { + if ( method_exists( 'WP_List_Table', 'get_primary_column_name' ) ) { + return parent::get_primary_column_name(); + } else { + return $this->get_default_primary_column_name(); + } + } + + /** + * Get the actions which are relevant for a specific plugin row. + * + * @since 2.5.0 + * + * @param array $item Array of item data. + * @return array Array with relevant action links. + */ + protected function get_row_actions( $item ) { + $actions = array(); + $action_links = array(); + + // Display the 'Install' action link if the plugin is not yet available. + if ( ! $this->tgmpa->is_plugin_installed( $item['slug'] ) ) { + $actions['install'] = _x( 'Install %2$s', '%2$s = plugin name in screen reader markup', 'tgmpa' ); + } else { + // Display the 'Update' action link if an update is available and WP complies with plugin minimum. + if ( false !== $this->tgmpa->does_plugin_have_update( $item['slug'] ) && $this->tgmpa->can_plugin_update( $item['slug'] ) ) { + $actions['update'] = _x( 'Update %2$s', '%2$s = plugin name in screen reader markup', 'tgmpa' ); + } + + // Display the 'Activate' action link, but only if the plugin meets the minimum version. + if ( $this->tgmpa->can_plugin_activate( $item['slug'] ) ) { + $actions['activate'] = _x( 'Activate %2$s', '%2$s = plugin name in screen reader markup', 'tgmpa' ); + } + } + + // Create the actual links. + foreach ( $actions as $action => $text ) { + $nonce_url = wp_nonce_url( + add_query_arg( + array( + 'plugin' => urlencode( $item['slug'] ), + 'tgmpa-' . $action => $action . '-plugin', + ), + $this->tgmpa->get_tgmpa_url() + ), + 'tgmpa-' . $action, + 'tgmpa-nonce' + ); + + $action_links[ $action ] = sprintf( + '' . esc_html( $text ) . '', + esc_url( $nonce_url ), + '' . esc_html( $item['sanitized_plugin'] ) . '' + ); + } + + $prefix = ( defined( 'WP_NETWORK_ADMIN' ) && WP_NETWORK_ADMIN ) ? 'network_admin_' : ''; + return apply_filters( "tgmpa_{$prefix}plugin_action_links", array_filter( $action_links ), $item['slug'], $item, $this->view_context ); } /** - * Defines all types of bulk actions for handling - * registered plugins. + * Generates content for a single row of the table. + * + * @since 2.5.0 + * + * @param object $item The current item. + */ + public function single_row( $item ) { + parent::single_row( $item ); + + /** + * Fires after each specific row in the TGMPA Plugins list table. + * + * The dynamic portion of the hook name, `$item['slug']`, refers to the slug + * for the plugin. + * + * @since 2.5.0 + */ + do_action( "tgmpa_after_plugin_row_{$item['slug']}", $item['slug'], $item, $this->view_context ); + } + + /** + * Show the upgrade notice below a plugin row if there is one. + * + * @since 2.5.0 + * + * @see /wp-admin/includes/update.php + * + * @param string $slug Plugin slug. + * @param array $item The information available in this table row. + * @return null Return early if upgrade notice is empty. + */ + public function wp_plugin_update_row( $slug, $item ) { + if ( empty( $item['upgrade_notice'] ) ) { + return; + } + + echo ' + + + '; + } + + /** + * Extra controls to be displayed between bulk actions and pagination. + * + * @since 2.5.0 + * + * @param string $which 'top' or 'bottom' table navigation. + */ + public function extra_tablenav( $which ) { + if ( 'bottom' === $which ) { + $this->tgmpa->show_tgmpa_version(); + } + } + + /** + * Defines the bulk actions for handling registered plugins. * * @since 2.2.0 * @@ -1351,10 +2732,22 @@ public function get_columns() { */ public function get_bulk_actions() { - $actions = array( - 'tgmpa-bulk-install' => __('Install', 'tgmpa'), - 'tgmpa-bulk-activate' => __('Activate', 'tgmpa'), - ); + $actions = array(); + + if ( 'update' !== $this->view_context && 'activate' !== $this->view_context ) { + if ( current_user_can( 'install_plugins' ) ) { + $actions['tgmpa-bulk-install'] = __( 'Install', 'tgmpa' ); + } + } + + if ( 'install' !== $this->view_context ) { + if ( current_user_can( 'update_plugins' ) ) { + $actions['tgmpa-bulk-update'] = __( 'Update', 'tgmpa' ); + } + if ( current_user_can( 'activate_plugins' ) ) { + $actions['tgmpa-bulk-activate'] = __( 'Activate', 'tgmpa' ); + } + } return $actions; } @@ -1362,247 +2755,242 @@ public function get_bulk_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. + * The bulk installation process looks for the $_POST information and passes that + * through 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']); + if ( 'tgmpa-bulk-install' === $this->current_action() || 'tgmpa-bulk-update' === $this->current_action() ) { + + check_admin_referer( 'bulk-' . $this->_args['plural'] ); + + $install_type = 'install'; + if ( 'tgmpa-bulk-update' === $this->current_action() ) { + $install_type = 'update'; + } - // 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['plugins'])) { - $plugins = explode(',', stripslashes($_GET['plugins'])); - } // Looks like the user can use the direct method, take from $_POST. - elseif(isset($_POST['plugin'])) { - $plugins = (array) $_POST['plugin']; - } // Nothing has been submitted. - else { - $plugins = array(); - } - - // Grab information from $_POST if available. - if(isset($_POST['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(0 == $key % 3 || 0 == $key) { - $plugins_to_install[] = $value; - $plugin_installs[] = $value; - } + // Did user actually select any plugins to install/update ? + if ( empty( $_POST['plugin'] ) ) { + if ( 'install' === $install_type ) { + $message = __( 'No plugins were selected to be installed. No action taken.', 'tgmpa' ); + } else { + $message = __( 'No plugins were selected to be updated. No action taken.', 'tgmpa' ); } + + echo '

', esc_html( $message ), '

'; + + return false; } - // Look first to see if information has been passed via WP_Filesystem. - if(isset($_GET['plugin_paths'])) { - $plugin_paths = explode(',', stripslashes($_GET['plugin_paths'])); - } // Looks like the user doesn't need to enter his FTP creds. - elseif(isset($_POST['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['plugin_names'])) { - $plugin_names = explode(',', stripslashes($_GET['plugin_names'])); - } // Looks like the user doesn't need to enter his FTP creds. - elseif(isset($_POST['plugin'])) { - $plugin_names = (array) $plugin_name; - } // Nothing has been submitted. - else { - $plugin_names = array(); - } - - // Loop through plugin slugs and remove already installed plugins from the list. - $i = 0; - 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['plugin_paths'])) { - unset($plugin_paths[$i]); - } + if ( is_array( $_POST['plugin'] ) ) { + $plugins_to_install = (array) $_POST['plugin']; + } elseif ( is_string( $_POST['plugin'] ) ) { + // Received via Filesystem page - un-flatten array (WP bug #19643). + $plugins_to_install = explode( ',', $_POST['plugin'] ); + } - // If the plugin name isn't in the $_GET variable, we can unset the corresponding name. - if(!isset($_GET['plugin_names'])) { - unset($plugin_names[$i]); - } + // Sanitize the received input. + $plugins_to_install = array_map( 'urldecode', $plugins_to_install ); + $plugins_to_install = array_map( array( $this->tgmpa, 'sanitize_key' ), $plugins_to_install ); + + // Validate the received input. + foreach ( $plugins_to_install as $key => $slug ) { + // Check if the plugin was registered with TGMPA and remove if not. + if ( ! isset( $this->tgmpa->plugins[ $slug ] ) ) { + unset( $plugins_to_install[ $key ] ); + continue; } - $i++; - } - // No need to proceed further if we have no plugins to install. - if(empty($plugin_installs)) { - return FALSE; + // For install: make sure this is a plugin we *can* install and not one already installed. + if ( 'install' === $install_type && true === $this->tgmpa->is_plugin_installed( $slug ) ) { + unset( $plugins_to_install[ $key ] ); + } + + // For updates: make sure this is a plugin we *can* update (update available and WP version ok). + if ( 'update' === $install_type && false === $this->tgmpa->is_plugin_updatetable( $slug ) ) { + unset( $plugins_to_install[ $key ] ); + } } - // 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); + // No need to proceed further if we have no plugins to handle. + if ( empty( $plugins_to_install ) ) { + if ( 'install' === $install_type ) { + $message = __( 'No plugins are available to be installed at this time.', 'tgmpa' ); + } else { + $message = __( 'No plugins are available to be updated at this time.', 'tgmpa' ); + } + + echo '

', esc_html( $message ), '

'; - // 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); + return false; + } - // Pass all necessary information via URL if WP_Filesystem is needed. + // Pass all necessary information if WP_Filesystem is needed. $url = wp_nonce_url( - add_query_arg( - array( - 'page' => TGM_Plugin_Activation::$instance->menu, - 'tgmpa-action' => 'install-selected', - 'plugins' => urlencode(implode(',', $plugins)), - 'plugin_paths' => urlencode(implode(',', $plugin_paths)), - 'plugin_names' => urlencode(implode(',', $plugin_names)), - ), - network_admin_url('themes.php') - ), - 'bulk-plugins' + $this->tgmpa->get_tgmpa_url(), + 'bulk-' . $this->_args['plural'] ); + + // Give validated data back to $_POST which is the only place the filesystem looks for extra fields. + $_POST['plugin'] = implode( ',', $plugins_to_install ); // Work around for WP bug #19643. + $method = ''; // Leave blank so WP_Filesystem can populate it as necessary. - $fields = array('action', '_wp_http_referer', '_wpnonce'); // Extra fields to pass to WP_Filesystem. + $fields = array_keys( $_POST ); // Extra fields to pass to WP_Filesystem. - if(FALSE === ($creds = request_filesystem_credentials($url, $method, FALSE, FALSE, $fields))) { - return TRUE; + if ( false === ( $creds = request_filesystem_credentials( esc_url_raw( $url ), $method, false, false, $fields ) ) ) { + return true; // Stop the normal page form from displaying, credential request form will be shown. } - if(!WP_Filesystem($creds)) { - request_filesystem_credentials($url, $method, TRUE, FALSE, $fields); // Setup WP_Filesystem. - return TRUE; + // Now we have some credentials, setup WP_Filesystem. + if ( ! WP_Filesystem( $creds ) ) { + // Our credentials were no good, ask the user for them again. + request_filesystem_credentials( esc_url_raw( $url ), $method, true, false, $fields ); + + 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 + /* If we arrive here, we have the filesystem */ // Store all information in arrays since we are processing a bulk installation. - $api = array(); - $sources = array(); - $install_path = array(); - - // Loop through each plugin to install and try to grab information from WordPress API, if not create 'tgmpa-empty' scalar. - $i = 0; - foreach($plugin_installs as $plugin) { - $api[$i] = plugins_api('plugin_information', array('slug' => $plugin, 'fields' => array('sections' => FALSE))) ? plugins_api('plugin_information', array( - 'slug' => $plugin, - 'fields' => array('sections' => FALSE) - )) : (object) $api[$i] = 'tgmpa-empty'; - $i++; + $names = array(); + $sources = array(); // Needed for installs. + $file_paths = array(); // Needed for upgrades. + $to_inject = array(); // Information to inject into the update_plugins transient. + + // Prepare the data for validated plugins for the install/upgrade. + foreach ( $plugins_to_install as $slug ) { + $name = $this->tgmpa->plugins[ $slug ]['name']; + $source = $this->tgmpa->get_download_url( $slug ); + + if ( ! empty( $name ) && ! empty( $source ) ) { + $names[] = $name; + + switch ( $install_type ) { + + case 'install': + $sources[] = $source; + break; + + case 'update': + $file_paths[] = $this->tgmpa->plugins[ $slug ]['file_path']; + $to_inject[ $slug ] = $this->tgmpa->plugins[ $slug ]; + $to_inject[ $slug ]['source'] = $source; + break; + } + } } + unset( $slug, $name, $source ); - if(is_wp_error($api)) { - wp_die(TGM_Plugin_Activation::$instance->strings['oops'].var_dump($api)); - } + // Create a new instance of TGMPA_Bulk_Installer. + $installer = new TGMPA_Bulk_Installer( + new TGMPA_Bulk_Installer_Skin( + array( + 'url' => esc_url_raw( $this->tgmpa->get_tgmpa_url() ), + 'nonce' => 'bulk-' . $this->_args['plural'], + 'names' => $names, + 'install_type' => $install_type, + ) + ) + ); - // Capture download links from $api or set install link to pre-packaged/private repo. - $i = 0; - foreach($api as $object) { - $sources[$i] = isset($object->download_link) && 'repo' == $plugin_paths[$i] ? $object->download_link : $plugin_paths[$i]; - $i++; - } + // Wrap the install process with the appropriate HTML. + echo '
', + '

', esc_html( get_admin_page_title() ), '

+
'; - // Finally, all the data is prepared to be sent to the installer. - $url = add_query_arg(array('page' => TGM_Plugin_Activation::$instance->menu), network_admin_url('themes.php')); - $nonce = 'bulk-plugins'; - $names = $plugin_names; + // Process the bulk installation submissions. + add_filter( 'upgrader_source_selection', array( $this->tgmpa, 'maybe_adjust_source_dir' ), 1, 3 ); - // Create a new instance of TGM_Bulk_Installer. - $installer = new TGM_Bulk_Installer($skin = new TGM_Bulk_Installer_Skin(compact('url', 'nonce', 'names'))); + if ( 'tgmpa-bulk-update' === $this->current_action() ) { + // Inject our info into the update transient. + $this->tgmpa->inject_update_info( $to_inject ); - // Wrap the install process with the appropriate HTML. - echo '
'; - if(version_compare(TGM_Plugin_Activation::$instance->wp_version, '3.8', '<')) { - screen_icon(apply_filters('tgmpa_default_screen_icon', 'themes')); + $installer->bulk_upgrade( $file_paths ); + } else { + $installer->bulk_install( $sources ); } - echo '

'.esc_html(get_admin_page_title()).'

'; - // Process the bulk installation submissions. - $installer->bulk_install($sources); - echo '
'; - return TRUE; + remove_filter( 'upgrader_source_selection', array( $this->tgmpa, 'maybe_adjust_source_dir' ), 1, 3 ); + + echo '
'; + + return true; } // Bulk activation process. - if('tgmpa-bulk-activate' === $this->current_action()) { - check_admin_referer('bulk-'.$this->_args['plural']); + if ( 'tgmpa-bulk-activate' === $this->current_action() ) { + check_admin_referer( 'bulk-' . $this->_args['plural'] ); + + // Did user actually select any plugins to activate ? + if ( empty( $_POST['plugin'] ) ) { + echo '

', esc_html__( 'No plugins were selected to be activated. No action taken.', 'tgmpa' ), '

'; + + return false; + } // Grab plugin data from $_POST. - $plugins = isset($_POST['plugin']) ? (array) $_POST['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); + $plugins = array(); + if ( isset( $_POST['plugin'] ) ) { + $plugins = array_map( 'urldecode', (array) $_POST['plugin'] ); + $plugins = array_map( array( $this->tgmpa, 'sanitize_key' ), $plugins ); } - foreach($plugins_to_activate as $i => $array) { - if(!preg_match('|.php$|', $array[0])) { - unset($plugins_to_activate[$i]); + $plugins_to_activate = array(); + $plugin_names = array(); + + // Grab the file paths for the selected & inactive plugins from the registration array. + foreach ( $plugins as $slug ) { + if ( $this->tgmpa->can_plugin_activate( $slug ) ) { + $plugins_to_activate[] = $this->tgmpa->plugins[ $slug ]['file_path']; + $plugin_names[] = $this->tgmpa->plugins[ $slug ]['name']; } } + unset( $slug ); // Return early if there are no plugins to activate. - if(empty($plugins_to_activate)) { - return; - } - - $plugins = array(); - $plugin_names = array(); + if ( empty( $plugins_to_activate ) ) { + echo '

', esc_html__( 'No plugins are available to be activated at this time.', 'tgmpa' ), '

'; - foreach($plugins_to_activate as $plugin_string) { - $plugins[] = $plugin_string[0]; - $plugin_names[] = $plugin_string[2]; + return false; } - $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) ? ''.$last_plugin.'' : ''.(implode(', ', $plugin_names).' and '.$last_plugin.'.'); - // Now we are good to go - let's start activating plugins. - $activate = activate_plugins($plugins); + $activate = activate_plugins( $plugins_to_activate ); - if(is_wp_error($activate)) { - echo '

'.$activate->get_error_message().'

'; + if ( is_wp_error( $activate ) ) { + echo '

', wp_kses_post( $activate->get_error_message() ), '

'; } else { - printf('

%1$s %2$s

', _n('The following plugin was activated successfully:', 'The following plugins were activated successfully:', $count, 'tgmpa'), $imploded); - } - - // Update recently activated plugins option. - $recent = (array) get_option('recently_activated'); + $count = count( $plugin_names ); // Count so we can use _n function. + $plugin_names = array_map( array( 'TGMPA_Utils', 'wrap_in_strong' ), $plugin_names ); + $last_plugin = array_pop( $plugin_names ); // Pop off last name to prep for readability. + $imploded = empty( $plugin_names ) ? $last_plugin : ( implode( ', ', $plugin_names ) . ' ' . esc_html_x( 'and', 'plugin A *and* plugin B', 'tgmpa' ) . ' ' . $last_plugin ); + + printf( // WPCS: xss ok. + '

%1$s %2$s.

', + esc_html( _n( 'The following plugin was activated successfully:', 'The following plugins were activated successfully:', $count, 'tgmpa' ) ), + $imploded + ); - foreach($plugins as $plugin => $time) { - if(isset($recent[$plugin])) { - unset($recent[$plugin]); + // Update recently activated plugins option. + $recent = (array) get_option( 'recently_activated' ); + foreach ( $plugins_to_activate as $plugin => $time ) { + if ( isset( $recent[ $plugin ] ) ) { + unset( $recent[ $plugin ] ); + } } + update_option( 'recently_activated', $recent ); } - update_option('recently_activated', $recent); + unset( $_POST ); // Reset the $_POST variable in case user wants to perform one action after another. - unset($_POST); // Reset the $_POST variable in case user wants to perform one action after another. + return true; } + + return false; } /** @@ -1611,527 +2999,767 @@ public function process_bulk_actions() { * @since 2.2.0 */ public function prepare_items() { + $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. + $primary = $this->get_primary_column_name(); // Column which has the row actions. + $this->_column_headers = array( $columns, $hidden, $sortable, $primary ); // Get all necessary column headers. + + // Process our bulk activations here. + if ( 'tgmpa-bulk-activate' === $this->current_action() ) { + $this->process_bulk_actions(); + } - $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. + // Store all of our plugin data into $items array so WP_List_Table can use it. + $this->items = apply_filters( 'tgmpa_table_data_items', $this->_gather_plugin_data() ); + } - // Process our bulk actions here. - $this->process_bulk_actions(); + /* *********** DEPRECATED METHODS *********** */ - // Store all of our plugin data into $items array so WP_List_Table can use it. - $this->items = $this->_gather_plugin_data(); + /** + * Retrieve plugin data, given the plugin name. + * + * @since 2.2.0 + * @deprecated 2.5.0 use {@see TGM_Plugin_Activation::_get_plugin_data_from_name()} instead. + * @see TGM_Plugin_Activation::_get_plugin_data_from_name() + * + * @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' ) { + _deprecated_function( __FUNCTION__, 'TGMPA 2.5.0', 'TGM_Plugin_Activation::_get_plugin_data_from_name()' ); + + return $this->tgmpa->_get_plugin_data_from_name( $name, $data ); } } } + +if ( ! class_exists( 'TGM_Bulk_Installer' ) ) { + + /** + * Hack: Prevent TGMPA v2.4.1- bulk installer class from being loaded if 2.4.1- is loaded after 2.5+. + */ + class TGM_Bulk_Installer { + } +} +if ( ! class_exists( 'TGM_Bulk_Installer_Skin' ) ) { + + /** + * Hack: Prevent TGMPA v2.4.1- bulk installer skin class from being loaded if 2.4.1- is loaded after 2.5+. + */ + class TGM_Bulk_Installer_Skin { + } +} + /** * 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 + * does not 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['page']) && TGM_Plugin_Activation::$instance->menu === $_GET['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 - * @author Gary Jones - */ - 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(); +add_action( 'admin_init', 'tgmpa_load_bulk_installer' ); +if ( ! function_exists( 'tgmpa_load_bulk_installer' ) ) { + /** + * Load bulk installer + */ + function tgmpa_load_bulk_installer() { + // Silently fail if 2.5+ is loaded *after* an older version. + if ( ! isset( $GLOBALS['tgmpa'] ) ) { + return; + } - // Connect to the Filesystem. - $res = $this->fs_connect(array(WP_CONTENT_DIR, WP_PLUGIN_DIR)); - if(!$res) { - $this->skin->footer(); + // Get TGMPA class instance. + $tgmpa_instance = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) ); - return FALSE; - } + if ( isset( $_GET['page'] ) && $tgmpa_instance->menu === $_GET['page'] ) { + if ( ! class_exists( 'Plugin_Upgrader', false ) ) { + require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; + } - // Set the bulk header and prepare results array. - $this->skin->bulk_header(); - $results = array(); + if ( ! class_exists( 'TGMPA_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 + * + * {@internal Since 2.5.0 the class is an extension of Plugin_Upgrader rather than WP_Upgrader.}} + * {@internal Since 2.5.2 the class has been renamed from TGM_Bulk_Installer to TGMPA_Bulk_Installer. + * This was done to prevent backward compatibility issues with v2.3.6.}} + * + * @package TGM-Plugin-Activation + * @author Thomas Griffin + * @author Gary Jones + */ + class TGMPA_Bulk_Installer extends Plugin_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; + + /** + * TGMPA instance + * + * @since 2.5.0 + * + * @var object + */ + protected $tgmpa; + + /** + * Whether or not the destination directory needs to be cleared ( = on update). + * + * @since 2.5.0 + * + * @var bool + */ + protected $clear_destination = false; + + /** + * References parent constructor and sets defaults for class. + * + * @since 2.2.0 + * + * @param \Bulk_Upgrader_Skin|null $skin Installer skin. + */ + public function __construct( $skin = null ) { + // Get TGMPA class instance. + $this->tgmpa = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) ); + + parent::__construct( $skin ); + + if ( isset( $this->skin->options['install_type'] ) && 'update' === $this->skin->options['install_type'] ) { + $this->clear_destination = true; + } - // 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; + if ( $this->tgmpa->is_automatic ) { + $this->activate_strings(); + } - // Loop through each plugin and process the installation. - foreach($packages as $plugin) { - $this->update_current++; // Increment counter. + add_action( 'upgrader_process_complete', array( $this->tgmpa, 'populate_file_path' ) ); + } - // 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. - ) - ); + /** + * 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.', 'tgmpa' ); + $this->strings['activation_success'] = __( 'Plugin activated successfully.', 'tgmpa' ); + } - // Store installation results in result property. - $results[$plugin] = $this->result; + /** + * Performs the actual installation of each plugin. + * + * @since 2.2.0 + * + * @see WP_Upgrader::run() + * + * @param array $options The installation config options. + * @return null|array Return early if error, array of installation data on success. + */ + public function run( $options ) { + $result = parent::run( $options ); + + // Reset the strings in case we changed one during automatic activation. + if ( $this->tgmpa->is_automatic ) { + if ( 'update' === $this->skin->options['install_type'] ) { + $this->upgrade_strings(); + } else { + $this->install_strings(); + } + } - // Prevent credentials auth screen from displaying multiple times. - if(FALSE === $result) { - break; + return $result; } - } - // Pass footer skin strings. - $this->skin->bulk_footer(); - $this->skin->footer(); + /** + * Processes the bulk installation of plugins. + * + * @since 2.2.0 + * + * {@internal This is basically a near identical copy of the WP Core + * Plugin_Upgrader::bulk_upgrade() method, with minor adjustments to deal with + * new installs instead of upgrades. + * For ease of future synchronizations, the adjustments are clearly commented, but no other + * comments are added. Code style has been made to comply.}} + * + * @see Plugin_Upgrader::bulk_upgrade() + * @see https://core.trac.wordpress.org/browser/tags/4.2.1/src/wp-admin/includes/class-wp-upgrader.php#L838 + * (@internal Last synced: Dec 31st 2015 against https://core.trac.wordpress.org/browser/trunk?rev=36134}} + * + * @param array $plugins The plugin sources needed for installation. + * @param array $args Arbitrary passed extra arguments. + * @return string|bool Install confirmation messages on success, false on failure. + */ + public function bulk_install( $plugins, $args = array() ) { + // [TGMPA + ] Hook auto-activation in. + add_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 ); + + $defaults = array( + 'clear_update_cache' => true, + ); + $parsed_args = wp_parse_args( $args, $defaults ); + + $this->init(); + $this->bulk = true; + + $this->install_strings(); // [TGMPA + ] adjusted. + + /* [TGMPA - ] $current = get_site_transient( 'update_plugins' ); */ + + /* [TGMPA - ] add_filter('upgrader_clear_destination', array($this, 'delete_old_plugin'), 10, 4); */ + + $this->skin->header(); + + // Connect to the Filesystem first. + $res = $this->fs_connect( array( WP_CONTENT_DIR, WP_PLUGIN_DIR ) ); + if ( ! $res ) { + $this->skin->footer(); + return false; + } - // Return our results. - return $results; - } + $this->skin->bulk_header(); + + /* + * Only start maintenance mode if: + * - running Multisite and there are one or more plugins specified, OR + * - a plugin with an update available is currently active. + * @TODO: For multisite, maintenance mode should only kick in for individual sites if at all possible. + */ + $maintenance = ( is_multisite() && ! empty( $plugins ) ); + + /* + [TGMPA - ] + foreach ( $plugins as $plugin ) + $maintenance = $maintenance || ( is_plugin_active( $plugin ) && isset( $current->response[ $plugin] ) ); + */ + if ( $maintenance ) { + $this->maintenance_mode( true ); + } - /** - * 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(), - ); + $results = array(); - // Parse default options with config options from $this->bulk_upgrade and extract them. - $options = wp_parse_args($options, $defaults); - extract($options); + $this->update_count = count( $plugins ); + $this->update_current = 0; + foreach ( $plugins as $plugin ) { + $this->update_current++; - // Connect to the Filesystem. - $res = $this->fs_connect(array(WP_CONTENT_DIR, $destination)); - if(!$res) { - return FALSE; - } + /* + [TGMPA - ] + $this->skin->plugin_info = get_plugin_data( WP_PLUGIN_DIR . '/' . $plugin, false, true); - // Return early if there is an error connecting to the Filesystem. - if(is_wp_error($res)) { - $this->skin->error($res); + if ( !isset( $current->response[ $plugin ] ) ) { + $this->skin->set_result('up_to_date'); + $this->skin->before(); + $this->skin->feedback('up_to_date'); + $this->skin->after(); + $results[$plugin] = true; + continue; + } - return $res; - } + // Get the URL to the zip file. + $r = $current->response[ $plugin ]; - // Call $this->header separately if running multiple times. - if(!$is_multi) { - $this->skin->header(); - } + $this->skin->plugin_active = is_plugin_active($plugin); + */ - // Set strings before the package is installed. - $this->skin->before(); + $result = $this->run( + array( + 'package' => $plugin, // [TGMPA + ] adjusted. + 'destination' => WP_PLUGIN_DIR, + 'clear_destination' => false, // [TGMPA + ] adjusted. + 'clear_working' => true, + 'is_multi' => true, + 'hook_extra' => array( + 'plugin' => $plugin, + ), + ) + ); - // 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(); + $results[ $plugin ] = $this->result; - return $download; - } + // Prevent credentials auth screen from displaying multiple times. + if ( false === $result ) { + break; + } + } //end foreach $plugins + + $this->maintenance_mode( false ); + + /** + * Fires when the bulk upgrader process is complete. + * + * @since WP 3.6.0 / TGMPA 2.5.0 + * + * @param Plugin_Upgrader $this Plugin_Upgrader instance. In other contexts, $this, might + * be a Theme_Upgrader or Core_Upgrade instance. + * @param array $data { + * Array of bulk item update data. + * + * @type string $action Type of action. Default 'update'. + * @type string $type Type of update process. Accepts 'plugin', 'theme', or 'core'. + * @type bool $bulk Whether the update process is a bulk update. Default true. + * @type array $packages Array of plugin, theme, or core packages to update. + * } + */ + do_action( 'upgrader_process_complete', $this, array( + 'action' => 'install', // [TGMPA + ] adjusted. + 'type' => 'plugin', + 'bulk' => true, + 'plugins' => $plugins, + ) ); + + $this->skin->bulk_footer(); + + $this->skin->footer(); + + // Cleanup our hooks, in case something else does a upgrade on this connection. + /* [TGMPA - ] remove_filter('upgrader_clear_destination', array($this, 'delete_old_plugin')); */ + + // [TGMPA + ] Remove our auto-activation hook. + remove_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 ); + + // Force refresh of plugin update information. + wp_clean_plugins_cache( $parsed_args['clear_update_cache'] ); + + return $results; + } - // Don't accidentally delete a local file. - $delete_package = ($download != $package); + /** + * Handle a bulk upgrade request. + * + * @since 2.5.0 + * + * @see Plugin_Upgrader::bulk_upgrade() + * + * @param array $plugins The local WP file_path's of the plugins which should be upgraded. + * @param array $args Arbitrary passed extra arguments. + * @return string|bool Install confirmation messages on success, false on failure. + */ + public function bulk_upgrade( $plugins, $args = array() ) { - // 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(); + add_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 ); - return $working_dir; - } + $result = parent::bulk_upgrade( $plugins, $args ); - // 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, - ) - ); + remove_filter( 'upgrader_post_install', array( $this, 'auto_activate' ), 10 ); - // 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'); + return $result; } - } - // Flush plugins cache so we can make sure that the installed plugins list is always up to date. - wp_cache_flush(); + /** + * Abuse a filter to auto-activate plugins after installation. + * + * Hooked into the 'upgrader_post_install' filter hook. + * + * @since 2.5.0 + * + * @param bool $bool The value we need to give back (true). + * @return bool + */ + public function auto_activate( $bool ) { + // Only process the activation of installed plugins if the automatic flag is set to true. + if ( $this->tgmpa->is_automatic ) { + // Flush plugins cache so the headers of the newly installed plugins will be read correctly. + wp_clean_plugins_cache(); + + // Get the installed plugin file. + $plugin_info = $this->plugin_info(); + + // Don't try to activate on upgrade of active plugin as WP will do this already. + if ( ! is_plugin_active( $plugin_info ) ) { + $activate = activate_plugin( $plugin_info ); + + // Adjust the success string based on the activation result. + $this->strings['process_success'] = $this->strings['process_success'] . "
\n"; + + if ( is_wp_error( $activate ) ) { + $this->skin->error( $activate ); + $this->strings['process_success'] .= $this->strings['activation_failed']; + } else { + $this->strings['process_success'] .= $this->strings['activation_success']; + } + } + } - // Set install footer strings. - $this->skin->after(); - if(!$is_multi) { - $this->skin->footer(); + return $bool; + } } - - 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.', 'tgmpa'); - $this->strings['downloading_package'] = __('Downloading install package from %s…', 'tgmpa'); - $this->strings['unpack_package'] = __('Unpacking the package…', 'tgmpa'); - $this->strings['installing_package'] = __('Installing the plugin…', 'tgmpa'); - $this->strings['process_failed'] = __('Plugin install failed.', 'tgmpa'); - $this->strings['process_success'] = __('Plugin installed successfully.', 'tgmpa'); - } + if ( ! class_exists( 'TGMPA_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 + * + * {@internal Since 2.5.2 the class has been renamed from TGM_Bulk_Installer_Skin to + * TGMPA_Bulk_Installer_Skin. + * This was done to prevent backward compatibility issues with v2.3.6.}} + * + * @see https://core.trac.wordpress.org/browser/trunk/src/wp-admin/includes/class-wp-upgrader-skins.php + * + * @package TGM-Plugin-Activation + * @author Thomas Griffin + * @author Gary Jones + */ + class TGMPA_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; + + /** + * TGMPA instance + * + * @since 2.5.0 + * + * @var object + */ + protected $tgmpa; + + /** + * 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() ) { + // Get TGMPA class instance. + $this->tgmpa = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) ); + + // Parse default and new args. + $defaults = array( + 'url' => '', + 'nonce' => '', + 'names' => array(), + 'install_type' => 'install', + ); + $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 the correct activation strings for the installer skin to use. - * - * @since 2.2.0 - */ - public function activate_strings() { + /** + * 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() { + if ( 'update' === $this->options['install_type'] ) { + parent::add_strings(); + $this->upgrader->strings['skin_before_update_header'] = __( 'Updating Plugin %1$s (%2$d/%3$d)', 'tgmpa' ); + } else { + $this->upgrader->strings['skin_update_failed_error'] = __( 'An error occurred while installing %1$s: %2$s.', 'tgmpa' ); + $this->upgrader->strings['skin_update_failed'] = __( 'The installation of %1$s failed.', 'tgmpa' ); + + if ( $this->tgmpa->is_automatic ) { + // Automatic activation strings. + $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.', 'tgmpa' ); + $this->upgrader->strings['skin_update_successful'] = __( '%1$s installed and activated successfully.', 'tgmpa' ) . ' ' . esc_html__( 'Show Details', 'tgmpa' ) . '.'; + $this->upgrader->strings['skin_upgrade_end'] = __( 'All installations and activations have been completed.', 'tgmpa' ); + $this->upgrader->strings['skin_before_update_header'] = __( 'Installing and Activating Plugin %1$s (%2$d/%3$d)', 'tgmpa' ); + } else { + // Default installation strings. + $this->upgrader->strings['skin_upgrade_start'] = __( 'The installation process is starting. This process may take a while on some hosts, so please be patient.', 'tgmpa' ); + $this->upgrader->strings['skin_update_successful'] = esc_html__( '%1$s installed successfully.', 'tgmpa' ) . ' ' . esc_html__( 'Show Details', 'tgmpa' ) . '.'; + $this->upgrader->strings['skin_upgrade_end'] = __( 'All installations have been completed.', 'tgmpa' ); + $this->upgrader->strings['skin_before_update_header'] = __( 'Installing Plugin %1$s (%2$d/%3$d)', 'tgmpa' ); + } + } + } - $this->strings['activation_failed'] = __('Plugin activation failed.', 'tgmpa'); - $this->strings['activation_success'] = __('Plugin activated successfully.', 'tgmpa'); - } + /** + * Outputs the header strings and necessary JS before each plugin installation. + * + * @since 2.2.0 + * + * @param string $title Unused in this implementation. + */ + public function before( $title = '' ) { + if ( empty( $title ) ) { + $title = esc_html( $this->plugin_names[ $this->i ] ); + } + parent::before( $title ); + } - /** - * 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() { + /** + * 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 + * + * @param string $title Unused in this implementation. + */ + public function after( $title = '' ) { + if ( empty( $title ) ) { + $title = esc_html( $this->plugin_names[ $this->i ] ); + } + parent::after( $title ); - // Return false if installation result isn't an array or the destination name isn't set. - if(!is_array($this->result)) { - return FALSE; - } + $this->i++; + } - if(empty($this->result['destination_name'])) { - return FALSE; - } + /** + * 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_clean_plugins_cache(); + + $this->tgmpa->show_tgmpa_version(); + + // Display message based on if all plugins are now active or not. + $update_actions = array(); + + if ( $this->tgmpa->is_tgmpa_complete() ) { + // All plugins are active, so we display the complete string and hide the menu to protect users. + echo ''; + $update_actions['dashboard'] = sprintf( + esc_html( $this->tgmpa->strings['complete'] ), + '' . esc_html__( 'Return to the Dashboard', 'tgmpa' ) . '' + ); + } else { + $update_actions['tgmpa_page'] = '' . esc_html( $this->tgmpa->strings['return'] ) . ''; + } - /// 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; - } + /** + * Filter the list of action links available following bulk plugin installs/updates. + * + * @since 2.5.0 + * + * @param array $update_actions Array of plugin action links. + * @param array $plugin_info Array of information for the last-handled plugin. + */ + $update_actions = apply_filters( 'tgmpa_update_bulk_plugins_complete_actions', $update_actions, $this->plugin_info ); + + if ( ! empty( $update_actions ) ) { + $this->feedback( implode( ' | ', (array) $update_actions ) ); + } + } - // Assume the requested plugin is the first in the list. - $pluginfiles = array_keys($plugin); + /* *********** DEPRECATED METHODS *********** */ + + /** + * Flush header output buffer. + * + * @since 2.2.0 + * @deprecated 2.5.0 use {@see Bulk_Upgrader_Skin::flush_output()} instead + * @see Bulk_Upgrader_Skin::flush_output() + */ + public function before_flush_output() { + _deprecated_function( __FUNCTION__, 'TGMPA 2.5.0', 'Bulk_Upgrader_Skin::flush_output()' ); + $this->flush_output(); + } - return $this->result['destination_name'].'/'.$pluginfiles[0]; + /** + * Flush footer output buffer and iterate $this->i to make sure the + * installation strings reference the correct plugin. + * + * @since 2.2.0 + * @deprecated 2.5.0 use {@see Bulk_Upgrader_Skin::flush_output()} instead + * @see Bulk_Upgrader_Skin::flush_output() + */ + public function after_flush_output() { + _deprecated_function( __FUNCTION__, 'TGMPA 2.5.0', 'Bulk_Upgrader_Skin::flush_output()' ); + $this->flush_output(); + $this->i++; + } + } } } } +} - if(!class_exists('TGM_Bulk_Installer_Skin')) { +if ( ! class_exists( 'TGMPA_Utils' ) ) { + + /** + * Generic utilities for TGMPA. + * + * All methods are static, poor-dev name-spacing class wrapper. + * + * Class was called TGM_Utils in 2.5.0 but renamed TGMPA_Utils in 2.5.1 as this was conflicting with Soliloquy. + * + * @since 2.5.0 + * + * @package TGM-Plugin-Activation + * @author Juliette Reinders Folmer + */ + class TGMPA_Utils { /** - * Installer skin to set strings for the bulk plugin installations.. + * Whether the PHP filter extension is enabled. * - * Extends Bulk_Upgrader_Skin and customizes to suit the installation of multiple - * plugins. + * @see http://php.net/book.filter * - * @since 2.2.0 + * @since 2.5.0 * - * @package TGM-Plugin-Activation - * @author Thomas Griffin - * @author Gary Jones + * @static + * + * @var bool $has_filters True is the extension is enabled. */ - 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(); + public static $has_filters; - /** - * 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.', 'tgmpa'); - $this->upgrader->strings['skin_update_successful'] = __('%1$s installed and activated successfully.', 'tgmpa').' '.__('Show Details', 'tgmpa').'.'; - $this->upgrader->strings['skin_upgrade_end'] = __('All installations and activations have been completed.', 'tgmpa'); - $this->upgrader->strings['skin_before_update_header'] = __('Installing and Activating Plugin %1$s (%2$d/%3$d)', 'tgmpa'); - } // 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.', 'tgmpa'); - $this->upgrader->strings['skin_update_failed_error'] = __('An error occurred while installing %1$s: %2$s.', 'tgmpa'); - $this->upgrader->strings['skin_update_failed'] = __('The installation of %1$s failed.', 'tgmpa'); - $this->upgrader->strings['skin_update_successful'] = __('%1$s installed successfully.', 'tgmpa').' '.__('Show Details', 'tgmpa').'.'; - $this->upgrader->strings['skin_upgrade_end'] = __('All installations have been completed.', 'tgmpa'); - $this->upgrader->strings['skin_before_update_header'] = __('Installing Plugin %1$s (%2$d/%3$d)', 'tgmpa'); - } - } - - /** - * 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; + /** + * Wrap an arbitrary string in tags. Meant to be used in combination with array_map(). + * + * @since 2.5.0 + * + * @static + * + * @param string $string Text to be wrapped. + * @return string + */ + public static function wrap_in_em( $string ) { + return '' . wp_kses_post( $string ) . ''; + } - printf('

'.$this->upgrader->strings['skin_before_update_header'].'

', $this->plugin_names[$this->i], $this->upgrader->update_current, $this->upgrader->update_count); - echo ''; - echo '

'; + /** + * Wrap an arbitrary string in tags. Meant to be used in combination with array_map(). + * + * @since 2.5.0 + * + * @static + * + * @param string $string Text to be wrapped. + * @return string + */ + public static function wrap_in_strong( $string ) { + return '' . wp_kses_post( $string ) . ''; + } - // Flush header output buffer. - $this->before_flush_output(); + /** + * Helper function: Validate a value as boolean + * + * @since 2.5.0 + * + * @static + * + * @param mixed $value Arbitrary value. + * @return bool + */ + public static function validate_bool( $value ) { + if ( ! isset( self::$has_filters ) ) { + self::$has_filters = extension_loaded( 'filter' ); } - /** - * 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 '

'; - - // Output error strings if an error has occurred. - if($this->error || !$this->result) { - if($this->error) { - echo '

'.sprintf($this->upgrader->strings['skin_update_failed_error'], $this->plugin_names[$this->i], $this->error).'

'; - } else { - echo '

'.sprintf($this->upgrader->strings['skin_update_failed'], $this->plugin_names[$this->i]).'

'; - } - - echo ''; - } - - // If the result is set and there are no errors, success! - if(!empty($this->result) && !is_wp_error($this->result)) { - echo '

'.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;').'

'; - echo ''; - } - - // Set in_loop and error to false and flush footer output buffer. - $this->reset(); - $this->after_flush_output(); + if ( self::$has_filters ) { + return filter_var( $value, FILTER_VALIDATE_BOOLEAN ); + } else { + return self::emulate_filter_bool( $value ); } + } - /** - * 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 '

'.TGM_Plugin_Activation::$instance->strings['return'].'

'; - $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 '

'.sprintf(TGM_Plugin_Activation::$instance->strings['complete'], ''.__('Return to the Dashboard', 'tgmpa').'').'

'; - echo ''; + /** + * Helper function: Cast a value to bool + * + * @since 2.5.0 + * + * @static + * + * @param mixed $value Value to cast. + * @return bool + */ + protected static function emulate_filter_bool( $value ) { + // @codingStandardsIgnoreStart + static $true = array( + '1', + 'true', 'True', 'TRUE', + 'y', 'Y', + 'yes', 'Yes', 'YES', + 'on', 'On', 'ON', + ); + static $false = array( + '0', + 'false', 'False', 'FALSE', + 'n', 'N', + 'no', 'No', 'NO', + 'off', 'Off', 'OFF', + ); + // @codingStandardsIgnoreEnd + + if ( is_bool( $value ) ) { + return $value; + } else if ( is_int( $value ) && ( 0 === $value || 1 === $value ) ) { + return (bool) $value; + } else if ( ( is_float( $value ) && ! is_nan( $value ) ) && ( (float) 0 === $value || (float) 1 === $value ) ) { + return (bool) $value; + } else if ( is_string( $value ) ) { + $value = trim( $value ); + if ( in_array( $value, $true, true ) ) { + return true; + } else if ( in_array( $value, $false, true ) ) { + return false; + } else { + return false; } } - /** - * 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++; - } + return false; } - } -} + } // End of class TGMPA_Utils +} // End of class_exists wrapper diff --git a/less/header.less b/less/header.less index 0ca02a2..07f22b1 100644 --- a/less/header.less +++ b/less/header.less @@ -5,7 +5,7 @@ Description: An advanced HTML5 theme framework by Mindshare Studios. Author: Mindshare Studios, Inc. Author URI: https://mind.sh/are/ Theme URI: https://github.com/mindsharestudios/blankout/ -Version: 3.8 +Version: 3.8.1 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html diff --git a/package.json b/package.json index 52755a8..d62ef4e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Blankout", - "version": "3.8.0", + "version": "3.8.1", "description": "A robust, responsive, Bootstrap 3-enabled theme framework for WordPress developed by Mindshare Studios, Inc.\r ========", "main": "index.php", "repository": { diff --git a/style.css b/style.css index 585860e..cd73d20 100644 --- a/style.css +++ b/style.css @@ -5,7 +5,7 @@ Description: An advanced HTML5 theme framework by Mindshare Studios. Author: Mindshare Studios, Inc. Author URI: https://mind.sh/are/ Theme URI: https://github.com/mindsharestudios/blankout/ -Version: 3.8 +Version: 3.8.1 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html
+
', + esc_html__( 'Upgrade message from the plugin author:', 'tgmpa' ), + ' ', wp_kses_data( $item['upgrade_notice'] ), ' +
+