2010-10-25 04:57:43 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2015-10-17 17:13:25 +02:00
|
|
|
* List Table API: WP_Plugin_Install_List_Table class
|
2010-10-25 04:57:43 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2015-10-17 17:13:25 +02:00
|
|
|
* @subpackage Administration
|
|
|
|
* @since 3.1.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Core class used to implement displaying plugins to install in a list table.
|
|
|
|
*
|
2010-10-25 06:04:18 +02:00
|
|
|
* @since 3.1.0
|
2015-10-17 17:13:25 +02:00
|
|
|
*
|
|
|
|
* @see WP_List_Table
|
2010-10-25 04:57:43 +02:00
|
|
|
*/
|
2010-11-04 09:07:03 +01:00
|
|
|
class WP_Plugin_Install_List_Table extends WP_List_Table {
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
public $order = 'ASC';
|
2015-01-08 06:44:23 +01:00
|
|
|
public $orderby = null;
|
2017-12-01 00:11:00 +01:00
|
|
|
public $groups = array();
|
2014-07-18 21:35:14 +02:00
|
|
|
|
2015-01-12 17:19:22 +01:00
|
|
|
private $error;
|
|
|
|
|
2015-05-29 22:17:26 +02:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
|
|
|
public function ajax_user_can() {
|
2017-12-01 00:11:00 +01:00
|
|
|
return current_user_can( 'install_plugins' );
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2014-07-18 22:50:15 +02:00
|
|
|
/**
|
2023-06-14 08:34:27 +02:00
|
|
|
* Returns the list of known plugins.
|
2014-07-18 22:50:15 +02:00
|
|
|
*
|
2017-09-27 13:59:47 +02:00
|
|
|
* Uses the transient data from the updates API to determine the known
|
|
|
|
* installed plugins.
|
2014-07-18 22:50:15 +02:00
|
|
|
*
|
2017-09-27 13:59:47 +02:00
|
|
|
* @since 4.9.0
|
|
|
|
* @access protected
|
2015-05-29 22:17:26 +02:00
|
|
|
*
|
|
|
|
* @return array
|
2014-07-18 22:50:15 +02:00
|
|
|
*/
|
2017-09-27 13:59:47 +02:00
|
|
|
protected function get_installed_plugins() {
|
|
|
|
$plugins = array();
|
2014-07-18 22:50:15 +02:00
|
|
|
|
|
|
|
$plugin_info = get_site_transient( 'update_plugins' );
|
|
|
|
if ( isset( $plugin_info->no_update ) ) {
|
|
|
|
foreach ( $plugin_info->no_update as $plugin ) {
|
Plugins: Add support for `Update URI` header.
This allows third-party plugins to avoid accidentally being overwritten with an update of a plugin of a similar name from the WordPress.org Plugin Directory.
Additionally, introduce the `update_plugins_{$hostname}` filter, which third-party plugins can use to offer updates for a given hostname.
If set, the `Update URI` header field should be a URI and have a unique hostname.
Some examples include:
* `https://wordpress.org/plugins/example-plugin/`
* `https://example.com/my-plugin/`
* `my-custom-plugin-name`
`Update URI: false` also works, and unless there is code handling the `false` hostname, the plugin will never get an update notification.
If the header is present, the WordPress.org API will currently only return updates for the plugin if it matches the following format:
* `https://wordpress.org/plugins/{$slug}/`
* `w.org/plugin/{$slug}`
If the header has any other value, the API will not return a result and will ignore the plugin for update purposes.
Props dd32, DavidAnderson, meloniq, markjaquith, DrewAPicture, mweichert, design_dolphin, filosofo, sean212, nhuja, JeroenReumkens, infolu, dingdang, joyously, earnjam, williampatton, grapplerulrich, markparnell, apedog, afragen, miqrogroove, rmccue, crazycoders, jdgrimes, damonganto, joostdevalk, jorbin, georgestephanis, khromov, GeekStreetWP, jb510, Rarst, juliobox, Ipstenu, mikejolley, Otto42, gMagicScott, TJNowell, GaryJ, knutsp, mordauk, nvartolomei, aspexi, chriscct7, benoitchantre, ryno267, lev0, gregorlove, dougwollison, SergeyBiryukov.
See #14179, #23318, #32101.
Built from https://develop.svn.wordpress.org/trunk@50921
git-svn-id: http://core.svn.wordpress.org/trunk@50530 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-05-17 19:04:01 +02:00
|
|
|
if ( isset( $plugin->slug ) ) {
|
|
|
|
$plugin->upgrade = false;
|
|
|
|
$plugins[ $plugin->slug ] = $plugin;
|
|
|
|
}
|
2014-07-18 22:50:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( isset( $plugin_info->response ) ) {
|
|
|
|
foreach ( $plugin_info->response as $plugin ) {
|
Plugins: Add support for `Update URI` header.
This allows third-party plugins to avoid accidentally being overwritten with an update of a plugin of a similar name from the WordPress.org Plugin Directory.
Additionally, introduce the `update_plugins_{$hostname}` filter, which third-party plugins can use to offer updates for a given hostname.
If set, the `Update URI` header field should be a URI and have a unique hostname.
Some examples include:
* `https://wordpress.org/plugins/example-plugin/`
* `https://example.com/my-plugin/`
* `my-custom-plugin-name`
`Update URI: false` also works, and unless there is code handling the `false` hostname, the plugin will never get an update notification.
If the header is present, the WordPress.org API will currently only return updates for the plugin if it matches the following format:
* `https://wordpress.org/plugins/{$slug}/`
* `w.org/plugin/{$slug}`
If the header has any other value, the API will not return a result and will ignore the plugin for update purposes.
Props dd32, DavidAnderson, meloniq, markjaquith, DrewAPicture, mweichert, design_dolphin, filosofo, sean212, nhuja, JeroenReumkens, infolu, dingdang, joyously, earnjam, williampatton, grapplerulrich, markparnell, apedog, afragen, miqrogroove, rmccue, crazycoders, jdgrimes, damonganto, joostdevalk, jorbin, georgestephanis, khromov, GeekStreetWP, jb510, Rarst, juliobox, Ipstenu, mikejolley, Otto42, gMagicScott, TJNowell, GaryJ, knutsp, mordauk, nvartolomei, aspexi, chriscct7, benoitchantre, ryno267, lev0, gregorlove, dougwollison, SergeyBiryukov.
See #14179, #23318, #32101.
Built from https://develop.svn.wordpress.org/trunk@50921
git-svn-id: http://core.svn.wordpress.org/trunk@50530 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-05-17 19:04:01 +02:00
|
|
|
if ( isset( $plugin->slug ) ) {
|
|
|
|
$plugin->upgrade = true;
|
|
|
|
$plugins[ $plugin->slug ] = $plugin;
|
|
|
|
}
|
2014-07-18 22:50:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-27 13:59:47 +02:00
|
|
|
return $plugins;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-09-02 08:58:09 +02:00
|
|
|
* Returns a list of slugs of installed plugins, if known.
|
2017-09-27 13:59:47 +02:00
|
|
|
*
|
|
|
|
* Uses the transient data from the updates API to determine the slugs of
|
|
|
|
* known installed plugins. This might be better elsewhere, perhaps even
|
|
|
|
* within get_plugins().
|
|
|
|
*
|
|
|
|
* @since 4.0.0
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function get_installed_plugin_slugs() {
|
|
|
|
return array_keys( $this->get_installed_plugins() );
|
2014-07-18 22:50:15 +02:00
|
|
|
}
|
|
|
|
|
2015-05-28 23:41:30 +02:00
|
|
|
/**
|
|
|
|
* @global array $tabs
|
|
|
|
* @global string $tab
|
|
|
|
* @global int $paged
|
|
|
|
* @global string $type
|
|
|
|
* @global string $term
|
|
|
|
*/
|
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
|
|
|
public function prepare_items() {
|
Coding Standards: Replace `include_once` with `require_once` for required files.
Per [https://developer.wordpress.org/coding-standards/wordpress-coding-standards/php/#writing-include-require-statements WordPress PHP coding standards], it is ''strongly recommended'' to use `require[_once]` for unconditional includes. When using `include[_once]`, PHP will throw a warning when the file is not found but will continue execution, which will almost certainly lead to other errors/warnings/notices being thrown if your application depends on the file loaded, potentially leading to security leaks. For that reason, `require[_once]` is generally the better choice as it will throw a `Fatal Error` if the file cannot be found.
Follow-up to [1674], [1812], [1964], [6779], [8540], [10521], [11005], [11911], [16065], [16149], [25421], [25466], [25823], [37714], [42981], [45448], [47198], [54276], [55633].
Props kausaralm, SergeyBiryukov.
See #57839.
Built from https://develop.svn.wordpress.org/trunk@55641
git-svn-id: http://core.svn.wordpress.org/trunk@55153 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-09 13:57:22 +02:00
|
|
|
require_once ABSPATH . 'wp-admin/includes/plugin-install.php';
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
global $tabs, $tab, $paged, $type, $term;
|
|
|
|
|
2024-05-01 20:01:12 +02:00
|
|
|
$tab = ! empty( $_REQUEST['tab'] ) ? sanitize_text_field( $_REQUEST['tab'] ) : '';
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
$paged = $this->get_pagenum();
|
|
|
|
|
2018-10-02 22:07:24 +02:00
|
|
|
$per_page = 36;
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// These are the tabs which are shown on the page.
|
2010-10-25 04:57:43 +02:00
|
|
|
$tabs = array();
|
2014-07-18 06:50:15 +02:00
|
|
|
|
2015-09-22 08:06:25 +02:00
|
|
|
if ( 'search' === $tab ) {
|
2016-01-14 10:07:26 +01:00
|
|
|
$tabs['search'] = __( 'Search Results' );
|
2015-09-22 08:06:25 +02:00
|
|
|
}
|
2020-09-11 03:05:08 +02:00
|
|
|
|
Code Modernization: Replace usage of `strpos()` with `str_contains()`.
`str_contains()` was introduced in PHP 8.0 to perform a case-sensitive check indicating if the string to search in (haystack) contains the given substring (needle).
WordPress core includes a polyfill for `str_contains()` on PHP < 8.0 as of WordPress 5.9.
This commit replaces `false !== strpos( ... )` with `str_contains()` in core files, making the code more readable and consistent, as well as better aligned with modern development practices.
Follow-up to [52039], [52040], [52326], [55703], [55710], [55987].
Props Soean, spacedmonkey, costdev, dingo_d, azaozz, mikeschroder, flixos90, peterwilsoncc, SergeyBiryukov.
Fixes #58206.
Built from https://develop.svn.wordpress.org/trunk@55988
git-svn-id: http://core.svn.wordpress.org/trunk@55500 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-06-22 16:36:26 +02:00
|
|
|
if ( 'beta' === $tab || str_contains( get_bloginfo( 'version' ), '-' ) ) {
|
2016-01-14 10:07:26 +01:00
|
|
|
$tabs['beta'] = _x( 'Beta Testing', 'Plugin Installer' );
|
2014-06-12 20:09:13 +02:00
|
|
|
}
|
2020-09-11 03:05:08 +02:00
|
|
|
|
2016-01-14 10:07:26 +01:00
|
|
|
$tabs['featured'] = _x( 'Featured', 'Plugin Installer' );
|
|
|
|
$tabs['popular'] = _x( 'Popular', 'Plugin Installer' );
|
|
|
|
$tabs['recommended'] = _x( 'Recommended', 'Plugin Installer' );
|
|
|
|
$tabs['favorites'] = _x( 'Favorites', 'Plugin Installer' );
|
2020-09-11 03:05:08 +02:00
|
|
|
|
2014-08-27 03:32:18 +02:00
|
|
|
if ( current_user_can( 'upload_plugins' ) ) {
|
2023-07-09 21:52:24 +02:00
|
|
|
/*
|
|
|
|
* No longer a real tab. Here for filter compatibility.
|
|
|
|
* Gets skipped in get_views().
|
|
|
|
*/
|
2014-08-27 03:32:18 +02:00
|
|
|
$tabs['upload'] = __( 'Upload Plugin' );
|
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2014-08-27 03:32:18 +02:00
|
|
|
$nonmenu_tabs = array( 'plugin-information' ); // Valid actions to perform which do not have a Menu item.
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2013-09-26 04:48:09 +02:00
|
|
|
/**
|
2020-06-20 14:14:09 +02:00
|
|
|
* Filters the tabs shown on the Add Plugins screen.
|
2013-09-26 04:48:09 +02:00
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*
|
2020-06-20 14:14:09 +02:00
|
|
|
* @param string[] $tabs The tabs shown on the Add Plugins screen. Defaults include
|
|
|
|
* 'featured', 'popular', 'recommended', 'favorites', and 'upload'.
|
2013-09-26 04:48:09 +02:00
|
|
|
*/
|
2010-10-25 04:57:43 +02:00
|
|
|
$tabs = apply_filters( 'install_plugins_tabs', $tabs );
|
2013-09-26 04:48:09 +02:00
|
|
|
|
|
|
|
/**
|
2020-06-20 14:14:09 +02:00
|
|
|
* Filters tabs not associated with a menu item on the Add Plugins screen.
|
2013-09-26 04:48:09 +02:00
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*
|
2020-06-20 14:14:09 +02:00
|
|
|
* @param string[] $nonmenu_tabs The tabs that don't have a menu item on the Add Plugins screen.
|
2013-09-26 04:48:09 +02:00
|
|
|
*/
|
2010-10-25 04:57:43 +02:00
|
|
|
$nonmenu_tabs = apply_filters( 'install_plugins_nonmenu_tabs', $nonmenu_tabs );
|
|
|
|
|
2012-12-20 16:55:32 +01:00
|
|
|
// If a non-valid menu tab has been selected, And it's not a non-menu action.
|
2020-04-05 05:02:11 +02:00
|
|
|
if ( empty( $tab ) || ( ! isset( $tabs[ $tab ] ) && ! in_array( $tab, (array) $nonmenu_tabs, true ) ) ) {
|
2010-10-25 04:57:43 +02:00
|
|
|
$tab = key( $tabs );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2017-09-27 13:59:47 +02:00
|
|
|
$installed_plugins = $this->get_installed_plugins();
|
|
|
|
|
2014-07-18 22:50:15 +02:00
|
|
|
$args = array(
|
2018-08-17 03:51:36 +02:00
|
|
|
'page' => $paged,
|
|
|
|
'per_page' => $per_page,
|
2018-02-01 06:17:33 +01:00
|
|
|
// Send the locale to the API so it can provide context-sensitive results.
|
2018-08-17 03:51:36 +02:00
|
|
|
'locale' => get_user_locale(),
|
2014-07-18 22:50:15 +02:00
|
|
|
);
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
switch ( $tab ) {
|
|
|
|
case 'search':
|
2013-03-01 18:00:25 +01:00
|
|
|
$type = isset( $_REQUEST['type'] ) ? wp_unslash( $_REQUEST['type'] ) : 'term';
|
|
|
|
$term = isset( $_REQUEST['s'] ) ? wp_unslash( $_REQUEST['s'] ) : '';
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
switch ( $type ) {
|
|
|
|
case 'tag':
|
|
|
|
$args['tag'] = sanitize_title_with_dashes( $term );
|
|
|
|
break;
|
|
|
|
case 'term':
|
|
|
|
$args['search'] = $term;
|
|
|
|
break;
|
|
|
|
case 'author':
|
|
|
|
$args['author'] = $term;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'featured':
|
|
|
|
case 'popular':
|
|
|
|
case 'new':
|
2014-06-12 20:09:13 +02:00
|
|
|
case 'beta':
|
2018-02-01 06:17:33 +01:00
|
|
|
$args['browse'] = $tab;
|
|
|
|
break;
|
2014-12-08 00:40:24 +01:00
|
|
|
case 'recommended':
|
2010-10-25 04:57:43 +02:00
|
|
|
$args['browse'] = $tab;
|
2018-02-01 06:17:33 +01:00
|
|
|
// Include the list of installed plugins so we can get relevant results.
|
|
|
|
$args['installed_plugins'] = array_keys( $installed_plugins );
|
2010-10-25 04:57:43 +02:00
|
|
|
break;
|
|
|
|
|
2012-09-27 02:47:01 +02:00
|
|
|
case 'favorites':
|
2016-03-30 20:36:26 +02:00
|
|
|
$action = 'save_wporg_username_' . get_current_user_id();
|
|
|
|
if ( isset( $_GET['_wpnonce'] ) && wp_verify_nonce( wp_unslash( $_GET['_wpnonce'] ), $action ) ) {
|
|
|
|
$user = isset( $_GET['user'] ) ? wp_unslash( $_GET['user'] ) : get_user_option( 'wporg_favorites' );
|
Help/About: WordPress 5.0 About Page.
The About page describes all the great changes in WordPress 5.0.
Highlights:
- Warn users of Gutenberg plugin of its deactivation upon 5.0 upgrade.
- Added illustrations to the Four Freedoms page.
- Include a link to wporg user’s plugin favorites as a way to display only the classic plugin as a suggestion for install.
- Detail the Classic Editor plugin and the support timeline.
Props pixelverbieger, ocean90, karmatosed, pento, boemedia, lonelyvegan, sami.keijonen, TimothyBlynJacobs, xkon, afercia, laurelfulford, joostdevalk, ipstenu, matveb, joen, tinkerbelly, chanthaboune, kjellr, alexislloyd, melchoyce, mcsf, courtney0burton, Otto42, cathibosco, tobifjellner, helen, audrasjb, antpb, jjj, elrae, desrosj, azaozz, joemcgill, skithund, gziolo.
Merges [43913], [43921-43922], [43937-43938], [43946-43947], [43952-43953], [43967-43969] into trunk.
Fixes #45178.
Built from https://develop.svn.wordpress.org/trunk@44264
git-svn-id: http://core.svn.wordpress.org/trunk@44094 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 17:36:59 +01:00
|
|
|
|
|
|
|
// If the save url parameter is passed with a falsey value, don't save the favorite user.
|
|
|
|
if ( ! isset( $_GET['save'] ) || $_GET['save'] ) {
|
|
|
|
update_user_meta( get_current_user_id(), 'wporg_favorites', $user );
|
|
|
|
}
|
2016-03-30 20:36:26 +02:00
|
|
|
} else {
|
|
|
|
$user = get_user_option( 'wporg_favorites' );
|
|
|
|
}
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $user ) {
|
2012-09-27 02:47:01 +02:00
|
|
|
$args['user'] = $user;
|
2017-12-01 00:11:00 +01:00
|
|
|
} else {
|
2012-09-27 02:47:01 +02:00
|
|
|
$args = false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2012-09-27 02:47:01 +02:00
|
|
|
|
|
|
|
add_action( 'install_plugins_favorites', 'install_plugins_favorites_form', 9, 0 );
|
|
|
|
break;
|
|
|
|
|
2010-10-25 04:57:43 +02:00
|
|
|
default:
|
|
|
|
$args = false;
|
2013-08-21 08:52:12 +02:00
|
|
|
break;
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2013-09-26 04:48:09 +02:00
|
|
|
/**
|
2020-06-20 14:14:09 +02:00
|
|
|
* Filters API request arguments for each Add Plugins screen tab.
|
2013-09-26 04:48:09 +02:00
|
|
|
*
|
2014-11-30 12:28:24 +01:00
|
|
|
* The dynamic portion of the hook name, `$tab`, refers to the plugin install tabs.
|
2021-03-07 13:32:09 +01:00
|
|
|
*
|
|
|
|
* Possible hook names include:
|
|
|
|
*
|
|
|
|
* - `install_plugins_table_api_args_favorites`
|
|
|
|
* - `install_plugins_table_api_args_featured`
|
|
|
|
* - `install_plugins_table_api_args_popular`
|
|
|
|
* - `install_plugins_table_api_args_recommended`
|
|
|
|
* - `install_plugins_table_api_args_upload`
|
2021-09-21 20:21:00 +02:00
|
|
|
* - `install_plugins_table_api_args_search`
|
|
|
|
* - `install_plugins_table_api_args_beta`
|
2013-09-26 04:48:09 +02:00
|
|
|
*
|
|
|
|
* @since 3.7.0
|
|
|
|
*
|
2020-06-20 14:14:09 +02:00
|
|
|
* @param array|false $args Plugin install API arguments.
|
2013-09-26 04:48:09 +02:00
|
|
|
*/
|
2016-08-22 20:25:31 +02:00
|
|
|
$args = apply_filters( "install_plugins_table_api_args_{$tab}", $args );
|
2013-08-21 08:52:12 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $args ) {
|
2010-10-25 04:57:43 +02:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
$api = plugins_api( 'query_plugins', $args );
|
|
|
|
|
2014-08-25 17:02:17 +02:00
|
|
|
if ( is_wp_error( $api ) ) {
|
|
|
|
$this->error = $api;
|
|
|
|
return;
|
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
$this->items = $api->plugins;
|
|
|
|
|
2014-07-18 21:35:14 +02:00
|
|
|
if ( $this->orderby ) {
|
2014-09-02 08:51:16 +02:00
|
|
|
uasort( $this->items, array( $this, 'order_callback' ) );
|
2014-07-18 21:35:14 +02:00
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->set_pagination_args(
|
|
|
|
array(
|
|
|
|
'total_items' => $api->info['results'],
|
|
|
|
'per_page' => $args['per_page'],
|
|
|
|
)
|
|
|
|
);
|
2014-07-18 21:35:14 +02:00
|
|
|
|
2014-08-01 23:04:15 +02:00
|
|
|
if ( isset( $api->info['groups'] ) ) {
|
2014-07-18 21:35:14 +02:00
|
|
|
$this->groups = $api->info['groups'];
|
2014-08-01 23:04:15 +02:00
|
|
|
}
|
2017-09-27 13:59:47 +02:00
|
|
|
|
|
|
|
if ( $installed_plugins ) {
|
|
|
|
$js_plugins = array_fill_keys(
|
|
|
|
array( 'all', 'search', 'active', 'inactive', 'recently_activated', 'mustuse', 'dropins' ),
|
|
|
|
array()
|
|
|
|
);
|
|
|
|
|
|
|
|
$js_plugins['all'] = array_values( wp_list_pluck( $installed_plugins, 'plugin' ) );
|
|
|
|
$upgrade_plugins = wp_filter_object_list( $installed_plugins, array( 'upgrade' => true ), 'and', 'plugin' );
|
|
|
|
|
|
|
|
if ( $upgrade_plugins ) {
|
|
|
|
$js_plugins['upgrade'] = array_values( $upgrade_plugins );
|
2017-10-18 20:01:49 +02:00
|
|
|
}
|
2017-09-27 13:59:47 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
wp_localize_script(
|
2018-08-17 03:51:36 +02:00
|
|
|
'updates',
|
|
|
|
'_wpUpdatesItemCounts',
|
|
|
|
array(
|
2017-12-01 00:11:00 +01:00
|
|
|
'plugins' => $js_plugins,
|
|
|
|
'totals' => wp_get_update_data(),
|
|
|
|
)
|
|
|
|
);
|
2017-09-27 13:59:47 +02:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2015-05-29 23:32:24 +02:00
|
|
|
/**
|
|
|
|
*/
|
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
|
|
|
public function no_items() {
|
Administration: Use `wp_admin_notice()` more in `/wp-admin/includes/`.
Adds further usages of `wp_admin_notice()` in `/wp-admin/includes/` on `.notice-error`, `.notice-warning`, `.error`, and `.updated`.
Ongoing task to implement new function across core.
Follow-up to [56408], [56409], [56410], [56518], [56570], [56571], [56572], [56573], [56576], [56589], [56590], [56597].
Props joedolson, mukesh27, costdev.
See #57791.
Built from https://develop.svn.wordpress.org/trunk@56599
git-svn-id: http://core.svn.wordpress.org/trunk@56111 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-09-17 17:23:22 +02:00
|
|
|
if ( isset( $this->error ) ) {
|
|
|
|
$error_message = '<p>' . $this->error->get_error_message() . '</p>';
|
|
|
|
$error_message .= '<p class="hide-if-no-js"><button class="button try-again">' . __( 'Try Again' ) . '</button></p>';
|
|
|
|
wp_admin_notice(
|
|
|
|
$error_message,
|
|
|
|
array(
|
|
|
|
'additional_classes' => array( 'inline', 'error' ),
|
|
|
|
'paragraph_wrap' => false,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
?>
|
2017-10-18 19:58:48 +02:00
|
|
|
<?php } else { ?>
|
|
|
|
<div class="no-plugin-results"><?php _e( 'No plugins found. Try a different search.' ); ?></div>
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2019-01-12 07:41:52 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2015-05-28 23:41:30 +02:00
|
|
|
/**
|
|
|
|
* @global array $tabs
|
|
|
|
* @global string $tab
|
2015-05-29 22:17:26 +02:00
|
|
|
*
|
2015-05-28 23:41:30 +02:00
|
|
|
* @return array
|
|
|
|
*/
|
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
|
|
|
protected function get_views() {
|
2010-10-25 04:57:43 +02:00
|
|
|
global $tabs, $tab;
|
|
|
|
|
|
|
|
$display_tabs = array();
|
|
|
|
foreach ( (array) $tabs as $action => $text ) {
|
2022-09-19 23:08:10 +02:00
|
|
|
$display_tabs[ 'plugin-install-' . $action ] = array(
|
|
|
|
'url' => self_admin_url( 'plugin-install.php?tab=' . $action ),
|
|
|
|
'label' => $text,
|
|
|
|
'current' => $action === $tab,
|
|
|
|
);
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
2014-08-27 04:59:16 +02:00
|
|
|
// No longer a real tab.
|
|
|
|
unset( $display_tabs['plugin-install-upload'] );
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2022-09-19 23:08:10 +02:00
|
|
|
return $this->get_views_links( $display_tabs );
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2014-07-18 06:50:15 +02:00
|
|
|
/**
|
2022-09-02 08:58:09 +02:00
|
|
|
* Overrides parent views so we can use the filter bar display.
|
2014-07-18 06:50:15 +02:00
|
|
|
*/
|
|
|
|
public function views() {
|
|
|
|
$views = $this->get_views();
|
|
|
|
|
2023-08-15 12:09:24 +02:00
|
|
|
/** This filter is documented in wp-admin/includes/class-wp-list-table.php */
|
2014-07-18 06:50:15 +02:00
|
|
|
$views = apply_filters( "views_{$this->screen->id}", $views );
|
|
|
|
|
2015-10-07 03:28:25 +02:00
|
|
|
$this->screen->render_screen_reader_content( 'heading_views' );
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2014-07-18 06:50:15 +02:00
|
|
|
<div class="wp-filter">
|
2014-08-25 18:03:16 +02:00
|
|
|
<ul class="filter-links">
|
2014-07-18 06:50:15 +02:00
|
|
|
<?php
|
|
|
|
if ( ! empty( $views ) ) {
|
|
|
|
foreach ( $views as $class => $view ) {
|
|
|
|
$views[ $class ] = "\t<li class='$class'>$view";
|
|
|
|
}
|
|
|
|
echo implode( " </li>\n", $views ) . "</li>\n";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</ul>
|
|
|
|
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php install_search_form(); ?>
|
2014-07-18 06:50:15 +02:00
|
|
|
</div>
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2014-07-18 06:50:15 +02:00
|
|
|
}
|
|
|
|
|
2014-07-09 22:02:14 +02:00
|
|
|
/**
|
2019-09-29 13:04:58 +02:00
|
|
|
* Displays the plugin install table.
|
|
|
|
*
|
|
|
|
* Overrides the parent display() method to provide a different container.
|
|
|
|
*
|
|
|
|
* @since 4.0.0
|
2014-07-09 22:02:14 +02:00
|
|
|
*/
|
|
|
|
public function display() {
|
|
|
|
$singular = $this->_args['singular'];
|
|
|
|
|
|
|
|
$data_attr = '';
|
|
|
|
|
|
|
|
if ( $singular ) {
|
|
|
|
$data_attr = " data-wp-lists='list:$singular'";
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->display_tablenav( 'top' );
|
|
|
|
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2014-07-09 22:02:14 +02:00
|
|
|
<div class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>">
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
|
|
|
$this->screen->render_screen_reader_content( 'heading_list' );
|
|
|
|
?>
|
2014-07-09 22:02:14 +02:00
|
|
|
<div id="the-list"<?php echo $data_attr; ?>>
|
|
|
|
<?php $this->display_rows_or_placeholder(); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2014-07-09 22:02:14 +02:00
|
|
|
$this->display_tablenav( 'bottom' );
|
|
|
|
}
|
|
|
|
|
2014-12-01 01:33:23 +01:00
|
|
|
/**
|
2015-05-28 23:41:30 +02:00
|
|
|
* @global string $tab
|
|
|
|
*
|
2014-12-01 01:33:23 +01:00
|
|
|
* @param string $which
|
|
|
|
*/
|
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
|
|
|
protected function display_tablenav( $which ) {
|
2020-02-09 17:55:09 +01:00
|
|
|
if ( 'featured' === $GLOBALS['tab'] ) {
|
2014-08-27 04:53:16 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-09-22 08:06:25 +02:00
|
|
|
if ( 'top' === $which ) {
|
2014-10-03 15:08:16 +02:00
|
|
|
wp_referer_field();
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2010-12-20 19:45:05 +01:00
|
|
|
<div class="tablenav top">
|
2010-10-25 04:57:43 +02:00
|
|
|
<div class="alignleft actions">
|
2013-09-26 04:48:09 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Fires before the Plugin Install table header pagination is displayed.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
do_action( 'install_plugins_table_header' );
|
|
|
|
?>
|
2010-10-25 04:57:43 +02:00
|
|
|
</div>
|
|
|
|
<?php $this->pagination( $which ); ?>
|
|
|
|
<br class="clear" />
|
|
|
|
</div>
|
|
|
|
<?php } else { ?>
|
2010-12-20 19:45:05 +01:00
|
|
|
<div class="tablenav bottom">
|
2010-10-25 04:57:43 +02:00
|
|
|
<?php $this->pagination( $which ); ?>
|
|
|
|
<br class="clear" />
|
|
|
|
</div>
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2019-01-12 07:41:52 +01:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2015-05-29 22:17:26 +02:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
Add access modifiers to methods and members of list table classes:
* `WP_List_Table` is the base class that implements `__get()` and `__call()` for BC
* Adds unit tests to confirm that subclasses properly inherit magic methods
* Add modifiers to subclasses: `WP_Links_List_Table`, `WP_Media_List_Table`, `WP_MS_Sites_List_Table`, `WP_MS_Themes_List_Table`, `WP_MS_Users_List_Table`, `WP_Plugin_Install_List_Table`, `WP_Plugins_List_Table`, `WP_Posts_List_Table`, `WP_Terms_List_Table`, `WP_Theme_Install_List_Table`, `WP_Themes_List_Table`
See #27881, #22234.
Built from https://develop.svn.wordpress.org/trunk@28493
git-svn-id: http://core.svn.wordpress.org/trunk@28319 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-05-19 03:17:15 +02:00
|
|
|
protected function get_table_classes() {
|
2014-05-13 07:17:14 +02:00
|
|
|
return array( 'widefat', $this->_args['plural'] );
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
2015-05-29 23:32:24 +02:00
|
|
|
|
2015-05-29 22:17:26 +02:00
|
|
|
/**
|
2023-05-09 00:37:24 +02:00
|
|
|
* @return string[] Array of column titles keyed by their column name.
|
2015-05-29 22:17:26 +02:00
|
|
|
*/
|
2014-07-12 05:27:14 +02:00
|
|
|
public function get_columns() {
|
2014-08-15 11:38:15 +02:00
|
|
|
return array();
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
|
|
|
|
2014-12-01 01:33:23 +01:00
|
|
|
/**
|
|
|
|
* @param object $plugin_a
|
|
|
|
* @param object $plugin_b
|
|
|
|
* @return int
|
|
|
|
*/
|
2014-09-02 08:51:16 +02:00
|
|
|
private function order_callback( $plugin_a, $plugin_b ) {
|
2014-07-18 21:35:14 +02:00
|
|
|
$orderby = $this->orderby;
|
2014-08-01 23:04:15 +02:00
|
|
|
if ( ! isset( $plugin_a->$orderby, $plugin_b->$orderby ) ) {
|
2014-07-18 21:35:14 +02:00
|
|
|
return 0;
|
2014-08-01 23:04:15 +02:00
|
|
|
}
|
2014-07-18 21:35:14 +02:00
|
|
|
|
|
|
|
$a = $plugin_a->$orderby;
|
|
|
|
$b = $plugin_b->$orderby;
|
|
|
|
|
2020-09-11 03:05:08 +02:00
|
|
|
if ( $a === $b ) {
|
2014-07-18 21:35:14 +02:00
|
|
|
return 0;
|
2014-08-01 23:04:15 +02:00
|
|
|
}
|
2014-07-18 21:35:14 +02:00
|
|
|
|
2015-09-22 08:06:25 +02:00
|
|
|
if ( 'DESC' === $this->order ) {
|
2014-07-18 21:35:14 +02:00
|
|
|
return ( $a < $b ) ? 1 : -1;
|
2014-08-01 23:04:15 +02:00
|
|
|
} else {
|
2014-07-18 21:35:14 +02:00
|
|
|
return ( $a < $b ) ? -1 : 1;
|
2014-08-01 23:04:15 +02:00
|
|
|
}
|
2014-07-18 21:35:14 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 00:09:16 +02:00
|
|
|
public function display_rows() {
|
2010-10-25 04:57:43 +02:00
|
|
|
$plugins_allowedtags = array(
|
2017-12-01 00:11:00 +01:00
|
|
|
'a' => array(
|
|
|
|
'href' => array(),
|
|
|
|
'title' => array(),
|
|
|
|
'target' => array(),
|
|
|
|
),
|
|
|
|
'abbr' => array( 'title' => array() ),
|
|
|
|
'acronym' => array( 'title' => array() ),
|
|
|
|
'code' => array(),
|
|
|
|
'pre' => array(),
|
|
|
|
'em' => array(),
|
|
|
|
'strong' => array(),
|
|
|
|
'ul' => array(),
|
|
|
|
'ol' => array(),
|
|
|
|
'li' => array(),
|
|
|
|
'p' => array(),
|
|
|
|
'br' => array(),
|
2010-10-25 04:57:43 +02:00
|
|
|
);
|
2011-02-09 18:35:36 +01:00
|
|
|
|
2014-08-13 04:31:18 +02:00
|
|
|
$plugins_group_titles = array(
|
|
|
|
'Performance' => _x( 'Performance', 'Plugin installer group title' ),
|
2017-12-01 00:11:00 +01:00
|
|
|
'Social' => _x( 'Social', 'Plugin installer group title' ),
|
|
|
|
'Tools' => _x( 'Tools', 'Plugin installer group title' ),
|
2014-08-13 04:31:18 +02:00
|
|
|
);
|
|
|
|
|
2014-07-18 21:35:14 +02:00
|
|
|
$group = null;
|
|
|
|
|
2010-10-25 04:57:43 +02:00
|
|
|
foreach ( (array) $this->items as $plugin ) {
|
2014-08-01 23:04:15 +02:00
|
|
|
if ( is_object( $plugin ) ) {
|
2010-10-25 04:57:43 +02:00
|
|
|
$plugin = (array) $plugin;
|
2014-08-01 23:04:15 +02:00
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Display the group heading if there is one.
|
2020-09-11 03:05:08 +02:00
|
|
|
if ( isset( $plugin['group'] ) && $plugin['group'] !== $group ) {
|
2014-08-01 23:04:15 +02:00
|
|
|
if ( isset( $this->groups[ $plugin['group'] ] ) ) {
|
2014-08-13 04:31:18 +02:00
|
|
|
$group_name = $this->groups[ $plugin['group'] ];
|
|
|
|
if ( isset( $plugins_group_titles[ $group_name ] ) ) {
|
|
|
|
$group_name = $plugins_group_titles[ $group_name ];
|
|
|
|
}
|
2014-08-01 23:04:15 +02:00
|
|
|
} else {
|
2014-07-18 21:35:14 +02:00
|
|
|
$group_name = $plugin['group'];
|
2014-08-01 23:04:15 +02:00
|
|
|
}
|
2014-07-18 21:35:14 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Starting a new group, close off the divs of the last one.
|
2014-07-18 21:35:14 +02:00
|
|
|
if ( ! empty( $group ) ) {
|
|
|
|
echo '</div></div>';
|
|
|
|
}
|
|
|
|
|
|
|
|
echo '<div class="plugin-group"><h3>' . esc_html( $group_name ) . '</h3>';
|
2020-01-29 01:45:18 +01:00
|
|
|
// Needs an extra wrapping div for nth-child selectors to work.
|
2014-07-18 21:35:14 +02:00
|
|
|
echo '<div class="plugin-items">';
|
|
|
|
|
|
|
|
$group = $plugin['group'];
|
|
|
|
}
|
2020-09-11 03:05:08 +02:00
|
|
|
|
2010-10-25 04:57:43 +02:00
|
|
|
$title = wp_kses( $plugin['name'], $plugins_allowedtags );
|
2014-07-09 22:02:14 +02:00
|
|
|
|
2014-08-01 22:44:14 +02:00
|
|
|
// Remove any HTML from the description.
|
2014-07-09 22:02:14 +02:00
|
|
|
$description = strip_tags( $plugin['short_description'] );
|
2022-04-05 13:02:01 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Filters the plugin card description on the Add Plugins screen.
|
|
|
|
*
|
|
|
|
* @since 6.0.0
|
|
|
|
*
|
|
|
|
* @param string $description Plugin card description.
|
2022-05-02 04:46:11 +02:00
|
|
|
* @param array $plugin An array of plugin data. See {@see plugins_api()}
|
2022-04-05 13:02:01 +02:00
|
|
|
* for the list of possible values.
|
|
|
|
*/
|
|
|
|
$description = apply_filters( 'plugin_install_description', $description, $plugin );
|
|
|
|
|
|
|
|
$version = wp_kses( $plugin['version'], $plugins_allowedtags );
|
2010-10-25 04:57:43 +02:00
|
|
|
|
|
|
|
$name = strip_tags( $title . ' ' . $version );
|
|
|
|
|
2014-08-01 23:04:15 +02:00
|
|
|
$author = wp_kses( $plugin['author'], $plugins_allowedtags );
|
2014-07-09 22:02:14 +02:00
|
|
|
if ( ! empty( $author ) ) {
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Plugin author. */
|
2014-07-09 22:02:14 +02:00
|
|
|
$author = ' <cite>' . sprintf( __( 'By %s' ), $author ) . '</cite>';
|
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2019-04-13 01:56:52 +02:00
|
|
|
$requires_php = isset( $plugin['requires_php'] ) ? $plugin['requires_php'] : null;
|
|
|
|
$requires_wp = isset( $plugin['requires'] ) ? $plugin['requires'] : null;
|
Plugins: Disable "Install Now" button for plugins that require a higher version of PHP or WordPress.
Display a notice with an explanation and the steps required to resolve the issue.
Props afragen, schlessera, flixos90, nerrad, melchoyce, boemedia, hedgefield, joyously, johnalarcon, lakenh, afercia, acirujano, ibantxillo, SergeyBiryukov.
Fixes #43986.
Built from https://develop.svn.wordpress.org/trunk@43436
git-svn-id: http://core.svn.wordpress.org/trunk@43263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-07-09 15:45:25 +02:00
|
|
|
|
2019-04-13 01:56:52 +02:00
|
|
|
$compatible_php = is_php_version_compatible( $requires_php );
|
|
|
|
$compatible_wp = is_wp_version_compatible( $requires_wp );
|
|
|
|
$tested_wp = ( empty( $plugin['tested'] ) || version_compare( get_bloginfo( 'version' ), $plugin['tested'], '<=' ) );
|
Plugins: Disable "Install Now" button for plugins that require a higher version of PHP or WordPress.
Display a notice with an explanation and the steps required to resolve the issue.
Props afragen, schlessera, flixos90, nerrad, melchoyce, boemedia, hedgefield, joyously, johnalarcon, lakenh, afercia, acirujano, ibantxillo, SergeyBiryukov.
Fixes #43986.
Built from https://develop.svn.wordpress.org/trunk@43436
git-svn-id: http://core.svn.wordpress.org/trunk@43263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-07-09 15:45:25 +02:00
|
|
|
|
2010-10-25 04:57:43 +02:00
|
|
|
$action_links = array();
|
|
|
|
|
Upgrade/Install: Introduce Plugin Dependencies.
Introduces a new "Requires Plugins" plugin header so that plugin developers can list the slugs of the plugins theirs depends on.
This will inform users of the requirements, and provide links to the WordPress.org Plugins Repository that they can click to install and activate the dependencies first.
Plugins whose requirements are not met cannot be installed or activated, and they will be deactivated automatically if their requirements become unmet.
Plugins that others rely on cannot be deactivated or deleted until their dependent plugins are deactivated or deleted.
In memory of Alex Mills and Alex King.
WordPress Remembers.
Props ahoereth, afragen, alanfuller, alexkingorg, amykamala, anonymized_10690803, apeatling, ashfame, atimmer, audrasjb, aristath, azaozz, batmoo, beaulebens, blobaugh, bobbingwide, boonebgorges, brianhenryie, chanthaboune, chrisdavidmiles, coolmann, costdev, courane01, danielbachhuber, davidperez, dd32, Denis-de-Bernardy, dingo_d, DJPaul, dougal, DrewAPicture, ethitter, filosofo, georgestephanis, giuseppemazzapica-1, goldenapples, griffinjt, hellofromTonya, husobj, ideag, jarednova, jbobich, jbrinley, jltallon, joedolson, johnciacia, johnjamesjacoby, joppuyo, jsmoriss, karmatosed, kebbet, knutsp, kraftbj, kraftner, kurtpayne, lkraav, logikal16, luisherranz, man4toman, markjaquith, matt, mbijon, megphillips91, mikeschinkel, mordauk, morehawes, mrwweb, mte90, mukesh27, mzaweb, nacin, norcross, nvwd, nwjames, obliviousharmony, ocean90, oglekler, paaljoachim, pauldewouters, pbaylies, pbiron, peterwilsoncc, Philipp15b, poena, pogidude, retlehs, rmccue, ryan, sabreuse, sc0ttkclark, scribu, sereedmedia, SergeyBiryukov, ShaneF, shidouhikari, soean, spacedmonkey, stephenh1988, swissspidy, taylorde, tazotodua, threadi, TimothyBlynJacobs, TJNowell, tollmanz, toscho, tropicalista, Viper007Bond, westi, whiteshadow, williamsba1, wpsmith, ZaneMatthew.
Fixes #22316.
Built from https://develop.svn.wordpress.org/trunk@57545
git-svn-id: http://core.svn.wordpress.org/trunk@57046 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-02-07 00:46:14 +01:00
|
|
|
$action_links[] = wp_get_plugin_action_button( $name, $plugin, $compatible_php, $compatible_wp );
|
2010-10-25 04:57:43 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$details_link = self_admin_url(
|
|
|
|
'plugin-install.php?tab=plugin-information&plugin=' . $plugin['slug'] .
|
|
|
|
'&TB_iframe=true&width=600&height=550'
|
|
|
|
);
|
2014-07-09 22:02:14 +02:00
|
|
|
|
2018-03-11 17:44:34 +01:00
|
|
|
$action_links[] = sprintf(
|
|
|
|
'<a href="%s" class="thickbox open-plugin-details-modal" aria-label="%s" data-title="%s">%s</a>',
|
|
|
|
esc_url( $details_link ),
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Plugin name and version. */
|
2018-03-11 17:44:34 +01:00
|
|
|
esc_attr( sprintf( __( 'More information about %s' ), $name ) ),
|
|
|
|
esc_attr( $name ),
|
|
|
|
__( 'More Details' )
|
|
|
|
);
|
2014-07-17 00:50:14 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! empty( $plugin['icons']['svg'] ) ) {
|
2014-08-21 21:11:17 +02:00
|
|
|
$plugin_icon_url = $plugin['icons']['svg'];
|
2017-12-01 00:11:00 +01:00
|
|
|
} elseif ( ! empty( $plugin['icons']['2x'] ) ) {
|
2014-08-21 21:11:17 +02:00
|
|
|
$plugin_icon_url = $plugin['icons']['2x'];
|
2017-12-01 00:11:00 +01:00
|
|
|
} elseif ( ! empty( $plugin['icons']['1x'] ) ) {
|
2014-08-21 21:11:17 +02:00
|
|
|
$plugin_icon_url = $plugin['icons']['1x'];
|
|
|
|
} else {
|
|
|
|
$plugin_icon_url = $plugin['icons']['default'];
|
|
|
|
}
|
2014-07-09 22:02:14 +02:00
|
|
|
|
2013-09-26 04:48:09 +02:00
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters the install action links for a plugin.
|
2013-09-26 04:48:09 +02:00
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*
|
2022-05-02 15:07:14 +02:00
|
|
|
* @param string[] $action_links An array of plugin action links.
|
|
|
|
* Defaults are links to Details and Install Now.
|
|
|
|
* @param array $plugin An array of plugin data. See {@see plugins_api()}
|
2022-04-05 13:02:01 +02:00
|
|
|
* for the list of possible values.
|
2013-09-26 04:48:09 +02:00
|
|
|
*/
|
2010-10-25 04:57:43 +02:00
|
|
|
$action_links = apply_filters( 'plugin_install_action_links', $action_links, $plugin );
|
2015-01-06 02:03:23 +01:00
|
|
|
|
|
|
|
$last_updated_timestamp = strtotime( $plugin['last_updated'] );
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2015-02-05 05:19:23 +01:00
|
|
|
<div class="plugin-card plugin-card-<?php echo sanitize_html_class( $plugin['slug'] ); ?>">
|
Plugins: Disable "Install Now" button for plugins that require a higher version of PHP or WordPress.
Display a notice with an explanation and the steps required to resolve the issue.
Props afragen, schlessera, flixos90, nerrad, melchoyce, boemedia, hedgefield, joyously, johnalarcon, lakenh, afercia, acirujano, ibantxillo, SergeyBiryukov.
Fixes #43986.
Built from https://develop.svn.wordpress.org/trunk@43436
git-svn-id: http://core.svn.wordpress.org/trunk@43263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-07-09 15:45:25 +02:00
|
|
|
<?php
|
|
|
|
if ( ! $compatible_php || ! $compatible_wp ) {
|
2023-09-14 03:13:20 +02:00
|
|
|
$incompatible_notice_message = '';
|
Plugins: Disable "Install Now" button for plugins that require a higher version of PHP or WordPress.
Display a notice with an explanation and the steps required to resolve the issue.
Props afragen, schlessera, flixos90, nerrad, melchoyce, boemedia, hedgefield, joyously, johnalarcon, lakenh, afercia, acirujano, ibantxillo, SergeyBiryukov.
Fixes #43986.
Built from https://develop.svn.wordpress.org/trunk@43436
git-svn-id: http://core.svn.wordpress.org/trunk@43263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-07-09 15:45:25 +02:00
|
|
|
if ( ! $compatible_php && ! $compatible_wp ) {
|
2023-09-14 03:13:20 +02:00
|
|
|
$incompatible_notice_message .= __( 'This plugin does not work with your versions of WordPress and PHP.' );
|
2019-01-16 18:07:00 +01:00
|
|
|
if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) {
|
2023-09-14 03:13:20 +02:00
|
|
|
$incompatible_notice_message .= sprintf(
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: 1: URL to WordPress Updates screen, 2: URL to Update PHP page. */
|
2019-03-05 21:14:49 +01:00
|
|
|
' ' . __( '<a href="%1$s">Please update WordPress</a>, and then <a href="%2$s">learn more about updating PHP</a>.' ),
|
Plugins: Disable "Install Now" button for plugins that require a higher version of PHP or WordPress.
Display a notice with an explanation and the steps required to resolve the issue.
Props afragen, schlessera, flixos90, nerrad, melchoyce, boemedia, hedgefield, joyously, johnalarcon, lakenh, afercia, acirujano, ibantxillo, SergeyBiryukov.
Fixes #43986.
Built from https://develop.svn.wordpress.org/trunk@43436
git-svn-id: http://core.svn.wordpress.org/trunk@43263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-07-09 15:45:25 +02:00
|
|
|
self_admin_url( 'update-core.php' ),
|
2019-01-16 18:07:00 +01:00
|
|
|
esc_url( wp_get_update_php_url() )
|
|
|
|
);
|
2023-09-14 03:13:20 +02:00
|
|
|
$incompatible_notice_message .= wp_update_php_annotation( '</p><p><em>', '</em>', false );
|
2019-01-16 18:07:00 +01:00
|
|
|
} elseif ( current_user_can( 'update_core' ) ) {
|
2023-09-14 03:13:20 +02:00
|
|
|
$incompatible_notice_message .= sprintf(
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: URL to WordPress Updates screen. */
|
2019-03-05 21:14:49 +01:00
|
|
|
' ' . __( '<a href="%s">Please update WordPress</a>.' ),
|
2019-01-16 18:07:00 +01:00
|
|
|
self_admin_url( 'update-core.php' )
|
Plugins: Disable "Install Now" button for plugins that require a higher version of PHP or WordPress.
Display a notice with an explanation and the steps required to resolve the issue.
Props afragen, schlessera, flixos90, nerrad, melchoyce, boemedia, hedgefield, joyously, johnalarcon, lakenh, afercia, acirujano, ibantxillo, SergeyBiryukov.
Fixes #43986.
Built from https://develop.svn.wordpress.org/trunk@43436
git-svn-id: http://core.svn.wordpress.org/trunk@43263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-07-09 15:45:25 +02:00
|
|
|
);
|
2019-01-16 18:07:00 +01:00
|
|
|
} elseif ( current_user_can( 'update_php' ) ) {
|
2023-09-14 03:13:20 +02:00
|
|
|
$incompatible_notice_message .= sprintf(
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: URL to Update PHP page. */
|
2019-03-05 21:14:49 +01:00
|
|
|
' ' . __( '<a href="%s">Learn more about updating PHP</a>.' ),
|
2019-01-16 18:07:00 +01:00
|
|
|
esc_url( wp_get_update_php_url() )
|
Plugins: Disable "Install Now" button for plugins that require a higher version of PHP or WordPress.
Display a notice with an explanation and the steps required to resolve the issue.
Props afragen, schlessera, flixos90, nerrad, melchoyce, boemedia, hedgefield, joyously, johnalarcon, lakenh, afercia, acirujano, ibantxillo, SergeyBiryukov.
Fixes #43986.
Built from https://develop.svn.wordpress.org/trunk@43436
git-svn-id: http://core.svn.wordpress.org/trunk@43263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-07-09 15:45:25 +02:00
|
|
|
);
|
2023-09-14 03:13:20 +02:00
|
|
|
$incompatible_notice_message .= wp_update_php_annotation( '</p><p><em>', '</em>', false );
|
Plugins: Disable "Install Now" button for plugins that require a higher version of PHP or WordPress.
Display a notice with an explanation and the steps required to resolve the issue.
Props afragen, schlessera, flixos90, nerrad, melchoyce, boemedia, hedgefield, joyously, johnalarcon, lakenh, afercia, acirujano, ibantxillo, SergeyBiryukov.
Fixes #43986.
Built from https://develop.svn.wordpress.org/trunk@43436
git-svn-id: http://core.svn.wordpress.org/trunk@43263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-07-09 15:45:25 +02:00
|
|
|
}
|
|
|
|
} elseif ( ! $compatible_wp ) {
|
2023-09-14 03:13:20 +02:00
|
|
|
$incompatible_notice_message .= __( 'This plugin does not work with your version of WordPress.' );
|
Plugins: Disable "Install Now" button for plugins that require a higher version of PHP or WordPress.
Display a notice with an explanation and the steps required to resolve the issue.
Props afragen, schlessera, flixos90, nerrad, melchoyce, boemedia, hedgefield, joyously, johnalarcon, lakenh, afercia, acirujano, ibantxillo, SergeyBiryukov.
Fixes #43986.
Built from https://develop.svn.wordpress.org/trunk@43436
git-svn-id: http://core.svn.wordpress.org/trunk@43263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-07-09 15:45:25 +02:00
|
|
|
if ( current_user_can( 'update_core' ) ) {
|
2023-09-14 03:13:20 +02:00
|
|
|
$incompatible_notice_message .= printf(
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: URL to WordPress Updates screen. */
|
2019-03-05 21:14:49 +01:00
|
|
|
' ' . __( '<a href="%s">Please update WordPress</a>.' ),
|
Plugins: Disable "Install Now" button for plugins that require a higher version of PHP or WordPress.
Display a notice with an explanation and the steps required to resolve the issue.
Props afragen, schlessera, flixos90, nerrad, melchoyce, boemedia, hedgefield, joyously, johnalarcon, lakenh, afercia, acirujano, ibantxillo, SergeyBiryukov.
Fixes #43986.
Built from https://develop.svn.wordpress.org/trunk@43436
git-svn-id: http://core.svn.wordpress.org/trunk@43263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-07-09 15:45:25 +02:00
|
|
|
self_admin_url( 'update-core.php' )
|
|
|
|
);
|
|
|
|
}
|
2018-08-17 03:51:36 +02:00
|
|
|
} elseif ( ! $compatible_php ) {
|
2023-09-14 03:13:20 +02:00
|
|
|
$incompatible_notice_message .= __( 'This plugin does not work with your version of PHP.' );
|
2019-01-16 18:07:00 +01:00
|
|
|
if ( current_user_can( 'update_php' ) ) {
|
2023-09-14 03:13:20 +02:00
|
|
|
$incompatible_notice_message .= sprintf(
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: URL to Update PHP page. */
|
2019-03-05 21:14:49 +01:00
|
|
|
' ' . __( '<a href="%s">Learn more about updating PHP</a>.' ),
|
2019-01-16 18:07:00 +01:00
|
|
|
esc_url( wp_get_update_php_url() )
|
|
|
|
);
|
2023-09-14 03:13:20 +02:00
|
|
|
$incompatible_notice_message .= wp_update_php_annotation( '</p><p><em>', '</em>', false );
|
2019-01-16 18:07:00 +01:00
|
|
|
}
|
Plugins: Disable "Install Now" button for plugins that require a higher version of PHP or WordPress.
Display a notice with an explanation and the steps required to resolve the issue.
Props afragen, schlessera, flixos90, nerrad, melchoyce, boemedia, hedgefield, joyously, johnalarcon, lakenh, afercia, acirujano, ibantxillo, SergeyBiryukov.
Fixes #43986.
Built from https://develop.svn.wordpress.org/trunk@43436
git-svn-id: http://core.svn.wordpress.org/trunk@43263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-07-09 15:45:25 +02:00
|
|
|
}
|
2023-09-14 03:13:20 +02:00
|
|
|
|
|
|
|
wp_admin_notice(
|
|
|
|
$incompatible_notice_message,
|
|
|
|
array(
|
|
|
|
'type' => 'error',
|
|
|
|
'additional_classes' => array( 'notice-alt', 'inline' ),
|
|
|
|
)
|
|
|
|
);
|
Plugins: Disable "Install Now" button for plugins that require a higher version of PHP or WordPress.
Display a notice with an explanation and the steps required to resolve the issue.
Props afragen, schlessera, flixos90, nerrad, melchoyce, boemedia, hedgefield, joyously, johnalarcon, lakenh, afercia, acirujano, ibantxillo, SergeyBiryukov.
Fixes #43986.
Built from https://develop.svn.wordpress.org/trunk@43436
git-svn-id: http://core.svn.wordpress.org/trunk@43263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-07-09 15:45:25 +02:00
|
|
|
}
|
|
|
|
?>
|
2014-07-09 22:02:14 +02:00
|
|
|
<div class="plugin-card-top">
|
2014-09-02 21:47:16 +02:00
|
|
|
<div class="name column-name">
|
2015-10-10 17:17:26 +02:00
|
|
|
<h3>
|
2016-03-10 23:37:26 +01:00
|
|
|
<a href="<?php echo esc_url( $details_link ); ?>" class="thickbox open-plugin-details-modal">
|
2015-10-02 06:16:27 +02:00
|
|
|
<?php echo $title; ?>
|
2021-05-04 15:38:58 +02:00
|
|
|
<img src="<?php echo esc_url( $plugin_icon_url ); ?>" class="plugin-icon" alt="" />
|
2015-10-02 06:16:27 +02:00
|
|
|
</a>
|
2015-10-10 17:17:26 +02:00
|
|
|
</h3>
|
2014-09-02 21:47:16 +02:00
|
|
|
</div>
|
2014-08-21 21:11:17 +02:00
|
|
|
<div class="action-links">
|
|
|
|
<?php
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $action_links ) {
|
|
|
|
echo '<ul class="plugin-action-buttons"><li>' . implode( '</li><li>', $action_links ) . '</li></ul>';
|
|
|
|
}
|
2014-08-21 21:11:17 +02:00
|
|
|
?>
|
|
|
|
</div>
|
2014-08-15 11:38:15 +02:00
|
|
|
<div class="desc column-description">
|
|
|
|
<p><?php echo $description; ?></p>
|
2014-07-18 08:08:15 +02:00
|
|
|
<p class="authors"><?php echo $author; ?></p>
|
2014-07-09 22:02:14 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-05 15:27:10 +01:00
|
|
|
<?php
|
|
|
|
$dependencies_notice = $this->get_dependencies_notice( $plugin );
|
|
|
|
if ( ! empty( $dependencies_notice ) ) {
|
|
|
|
echo $dependencies_notice;
|
|
|
|
}
|
|
|
|
?>
|
2014-07-09 22:02:14 +02:00
|
|
|
<div class="plugin-card-bottom">
|
2014-08-15 11:38:15 +02:00
|
|
|
<div class="vers column-rating">
|
2017-12-01 00:11:00 +01:00
|
|
|
<?php
|
|
|
|
wp_star_rating(
|
|
|
|
array(
|
|
|
|
'rating' => $plugin['rating'],
|
|
|
|
'type' => 'percent',
|
|
|
|
'number' => $plugin['num_ratings'],
|
|
|
|
)
|
|
|
|
);
|
Plugins: Disable "Install Now" button for plugins that require a higher version of PHP or WordPress.
Display a notice with an explanation and the steps required to resolve the issue.
Props afragen, schlessera, flixos90, nerrad, melchoyce, boemedia, hedgefield, joyously, johnalarcon, lakenh, afercia, acirujano, ibantxillo, SergeyBiryukov.
Fixes #43986.
Built from https://develop.svn.wordpress.org/trunk@43436
git-svn-id: http://core.svn.wordpress.org/trunk@43263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-07-09 15:45:25 +02:00
|
|
|
?>
|
2015-12-26 01:48:27 +01:00
|
|
|
<span class="num-ratings" aria-hidden="true">(<?php echo number_format_i18n( $plugin['num_ratings'] ); ?>)</span>
|
2014-07-09 22:02:14 +02:00
|
|
|
</div>
|
2014-07-18 08:08:15 +02:00
|
|
|
<div class="column-updated">
|
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
|
|
|
<strong><?php _e( 'Last Updated:' ); ?></strong>
|
|
|
|
<?php
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Human-readable time difference. */
|
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
|
|
|
printf( __( '%s ago' ), human_time_diff( $last_updated_timestamp ) );
|
|
|
|
?>
|
2014-07-18 08:08:15 +02:00
|
|
|
</div>
|
|
|
|
<div class="column-downloaded">
|
2015-04-03 01:49:27 +02:00
|
|
|
<?php
|
|
|
|
if ( $plugin['active_installs'] >= 1000000 ) {
|
2018-03-12 02:57:31 +01:00
|
|
|
$active_installs_millions = floor( $plugin['active_installs'] / 1000000 );
|
2018-08-17 03:51:36 +02:00
|
|
|
$active_installs_text = sprintf(
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Number of millions. */
|
2018-05-07 23:30:23 +02:00
|
|
|
_nx( '%s+ Million', '%s+ Million', $active_installs_millions, 'Active plugin installations' ),
|
2018-03-12 02:57:31 +01:00
|
|
|
number_format_i18n( $active_installs_millions )
|
|
|
|
);
|
2020-09-11 03:05:08 +02:00
|
|
|
} elseif ( 0 === $plugin['active_installs'] ) {
|
2017-08-22 13:52:48 +02:00
|
|
|
$active_installs_text = _x( 'Less Than 10', 'Active plugin installations' );
|
2015-04-03 01:49:27 +02:00
|
|
|
} else {
|
|
|
|
$active_installs_text = number_format_i18n( $plugin['active_installs'] ) . '+';
|
|
|
|
}
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Number of installations. */
|
2017-08-22 13:52:48 +02:00
|
|
|
printf( __( '%s Active Installations' ), $active_installs_text );
|
2015-04-03 01:49:27 +02:00
|
|
|
?>
|
2014-07-18 08:08:15 +02:00
|
|
|
</div>
|
2014-07-09 22:02:14 +02:00
|
|
|
<div class="column-compatibility">
|
2014-07-18 08:08:15 +02:00
|
|
|
<?php
|
Plugins: Disable "Install Now" button for plugins that require a higher version of PHP or WordPress.
Display a notice with an explanation and the steps required to resolve the issue.
Props afragen, schlessera, flixos90, nerrad, melchoyce, boemedia, hedgefield, joyously, johnalarcon, lakenh, afercia, acirujano, ibantxillo, SergeyBiryukov.
Fixes #43986.
Built from https://develop.svn.wordpress.org/trunk@43436
git-svn-id: http://core.svn.wordpress.org/trunk@43263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-07-09 15:45:25 +02:00
|
|
|
if ( ! $tested_wp ) {
|
2014-09-28 22:26:17 +02:00
|
|
|
echo '<span class="compatibility-untested">' . __( 'Untested with your version of WordPress' ) . '</span>';
|
Plugins: Disable "Install Now" button for plugins that require a higher version of PHP or WordPress.
Display a notice with an explanation and the steps required to resolve the issue.
Props afragen, schlessera, flixos90, nerrad, melchoyce, boemedia, hedgefield, joyously, johnalarcon, lakenh, afercia, acirujano, ibantxillo, SergeyBiryukov.
Fixes #43986.
Built from https://develop.svn.wordpress.org/trunk@43436
git-svn-id: http://core.svn.wordpress.org/trunk@43263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-07-09 15:45:25 +02:00
|
|
|
} elseif ( ! $compatible_wp ) {
|
2014-08-24 19:26:15 +02:00
|
|
|
echo '<span class="compatibility-incompatible">' . __( '<strong>Incompatible</strong> with your version of WordPress' ) . '</span>';
|
2014-07-09 22:02:14 +02:00
|
|
|
} else {
|
2014-08-24 19:26:15 +02:00
|
|
|
echo '<span class="compatibility-compatible">' . __( '<strong>Compatible</strong> with your version of WordPress' ) . '</span>';
|
2014-07-09 22:02:14 +02:00
|
|
|
}
|
2014-07-18 08:08:15 +02:00
|
|
|
?>
|
2014-07-09 22:02:14 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
2014-08-01 22:44:14 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Close off the group divs of the last one.
|
2014-08-01 22:44:14 +02:00
|
|
|
if ( ! empty( $group ) ) {
|
|
|
|
echo '</div></div>';
|
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|
Upgrade/Install: Introduce Plugin Dependencies.
Introduces a new "Requires Plugins" plugin header so that plugin developers can list the slugs of the plugins theirs depends on.
This will inform users of the requirements, and provide links to the WordPress.org Plugins Repository that they can click to install and activate the dependencies first.
Plugins whose requirements are not met cannot be installed or activated, and they will be deactivated automatically if their requirements become unmet.
Plugins that others rely on cannot be deactivated or deleted until their dependent plugins are deactivated or deleted.
In memory of Alex Mills and Alex King.
WordPress Remembers.
Props ahoereth, afragen, alanfuller, alexkingorg, amykamala, anonymized_10690803, apeatling, ashfame, atimmer, audrasjb, aristath, azaozz, batmoo, beaulebens, blobaugh, bobbingwide, boonebgorges, brianhenryie, chanthaboune, chrisdavidmiles, coolmann, costdev, courane01, danielbachhuber, davidperez, dd32, Denis-de-Bernardy, dingo_d, DJPaul, dougal, DrewAPicture, ethitter, filosofo, georgestephanis, giuseppemazzapica-1, goldenapples, griffinjt, hellofromTonya, husobj, ideag, jarednova, jbobich, jbrinley, jltallon, joedolson, johnciacia, johnjamesjacoby, joppuyo, jsmoriss, karmatosed, kebbet, knutsp, kraftbj, kraftner, kurtpayne, lkraav, logikal16, luisherranz, man4toman, markjaquith, matt, mbijon, megphillips91, mikeschinkel, mordauk, morehawes, mrwweb, mte90, mukesh27, mzaweb, nacin, norcross, nvwd, nwjames, obliviousharmony, ocean90, oglekler, paaljoachim, pauldewouters, pbaylies, pbiron, peterwilsoncc, Philipp15b, poena, pogidude, retlehs, rmccue, ryan, sabreuse, sc0ttkclark, scribu, sereedmedia, SergeyBiryukov, ShaneF, shidouhikari, soean, spacedmonkey, stephenh1988, swissspidy, taylorde, tazotodua, threadi, TimothyBlynJacobs, TJNowell, tollmanz, toscho, tropicalista, Viper007Bond, westi, whiteshadow, williamsba1, wpsmith, ZaneMatthew.
Fixes #22316.
Built from https://develop.svn.wordpress.org/trunk@57545
git-svn-id: http://core.svn.wordpress.org/trunk@57046 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-02-07 00:46:14 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a notice containing a list of dependencies required by the plugin.
|
|
|
|
*
|
|
|
|
* @since 6.5.0
|
|
|
|
*
|
|
|
|
* @param array $plugin_data An array of plugin data. See {@see plugins_api()}
|
|
|
|
* for the list of possible values.
|
|
|
|
* @return string A notice containing a list of dependencies required by the plugin,
|
|
|
|
* or an empty string if none is required.
|
|
|
|
*/
|
|
|
|
protected function get_dependencies_notice( $plugin_data ) {
|
|
|
|
if ( empty( $plugin_data['requires_plugins'] ) ) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$no_name_markup = '<div class="plugin-dependency"><span class="plugin-dependency-name">%s</span></div>';
|
|
|
|
$has_name_markup = '<div class="plugin-dependency"><span class="plugin-dependency-name">%s</span> %s</div>';
|
|
|
|
|
|
|
|
$dependencies_list = '';
|
|
|
|
foreach ( $plugin_data['requires_plugins'] as $dependency ) {
|
|
|
|
$dependency_data = WP_Plugin_Dependencies::get_dependency_data( $dependency );
|
|
|
|
|
|
|
|
if (
|
|
|
|
false !== $dependency_data &&
|
|
|
|
! empty( $dependency_data['name'] ) &&
|
|
|
|
! empty( $dependency_data['slug'] ) &&
|
|
|
|
! empty( $dependency_data['version'] )
|
|
|
|
) {
|
|
|
|
$more_details_link = $this->get_more_details_link( $dependency_data['name'], $dependency_data['slug'] );
|
|
|
|
$dependencies_list .= sprintf( $has_name_markup, esc_html( $dependency_data['name'] ), $more_details_link );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = plugins_api( 'plugin_information', array( 'slug' => $dependency ) );
|
|
|
|
|
|
|
|
if ( ! empty( $result->name ) ) {
|
|
|
|
$more_details_link = $this->get_more_details_link( $result->name, $result->slug );
|
|
|
|
$dependencies_list .= sprintf( $has_name_markup, esc_html( $result->name ), $more_details_link );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$dependencies_list .= sprintf( $no_name_markup, esc_html( $dependency ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
$dependencies_notice = sprintf(
|
2024-03-05 15:27:10 +01:00
|
|
|
'<div class="plugin-dependencies notice notice-alt notice-info inline"><p class="plugin-dependencies-explainer-text">%s</p> %s</div>',
|
Upgrade/Install: Introduce Plugin Dependencies.
Introduces a new "Requires Plugins" plugin header so that plugin developers can list the slugs of the plugins theirs depends on.
This will inform users of the requirements, and provide links to the WordPress.org Plugins Repository that they can click to install and activate the dependencies first.
Plugins whose requirements are not met cannot be installed or activated, and they will be deactivated automatically if their requirements become unmet.
Plugins that others rely on cannot be deactivated or deleted until their dependent plugins are deactivated or deleted.
In memory of Alex Mills and Alex King.
WordPress Remembers.
Props ahoereth, afragen, alanfuller, alexkingorg, amykamala, anonymized_10690803, apeatling, ashfame, atimmer, audrasjb, aristath, azaozz, batmoo, beaulebens, blobaugh, bobbingwide, boonebgorges, brianhenryie, chanthaboune, chrisdavidmiles, coolmann, costdev, courane01, danielbachhuber, davidperez, dd32, Denis-de-Bernardy, dingo_d, DJPaul, dougal, DrewAPicture, ethitter, filosofo, georgestephanis, giuseppemazzapica-1, goldenapples, griffinjt, hellofromTonya, husobj, ideag, jarednova, jbobich, jbrinley, jltallon, joedolson, johnciacia, johnjamesjacoby, joppuyo, jsmoriss, karmatosed, kebbet, knutsp, kraftbj, kraftner, kurtpayne, lkraav, logikal16, luisherranz, man4toman, markjaquith, matt, mbijon, megphillips91, mikeschinkel, mordauk, morehawes, mrwweb, mte90, mukesh27, mzaweb, nacin, norcross, nvwd, nwjames, obliviousharmony, ocean90, oglekler, paaljoachim, pauldewouters, pbaylies, pbiron, peterwilsoncc, Philipp15b, poena, pogidude, retlehs, rmccue, ryan, sabreuse, sc0ttkclark, scribu, sereedmedia, SergeyBiryukov, ShaneF, shidouhikari, soean, spacedmonkey, stephenh1988, swissspidy, taylorde, tazotodua, threadi, TimothyBlynJacobs, TJNowell, tollmanz, toscho, tropicalista, Viper007Bond, westi, whiteshadow, williamsba1, wpsmith, ZaneMatthew.
Fixes #22316.
Built from https://develop.svn.wordpress.org/trunk@57545
git-svn-id: http://core.svn.wordpress.org/trunk@57046 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-02-07 00:46:14 +01:00
|
|
|
'<strong>' . __( 'Additional plugins are required' ) . '</strong>',
|
|
|
|
$dependencies_list
|
|
|
|
);
|
|
|
|
|
|
|
|
return $dependencies_notice;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a 'More details' link for the plugin.
|
|
|
|
*
|
|
|
|
* @since 6.5.0
|
|
|
|
*
|
|
|
|
* @param string $name The plugin's name.
|
|
|
|
* @param string $slug The plugin's slug.
|
|
|
|
* @return string The 'More details' link for the plugin.
|
|
|
|
*/
|
|
|
|
protected function get_more_details_link( $name, $slug ) {
|
|
|
|
$url = add_query_arg(
|
|
|
|
array(
|
|
|
|
'tab' => 'plugin-information',
|
|
|
|
'plugin' => $slug,
|
|
|
|
'TB_iframe' => 'true',
|
|
|
|
'width' => '600',
|
|
|
|
'height' => '550',
|
|
|
|
),
|
|
|
|
network_admin_url( 'plugin-install.php' )
|
|
|
|
);
|
|
|
|
|
|
|
|
$more_details_link = sprintf(
|
|
|
|
'<a href="%1$s" class="more-details-link thickbox open-plugin-details-modal" aria-label="%2$s" data-title="%3$s">%4$s</a>',
|
|
|
|
esc_url( $url ),
|
|
|
|
/* translators: %s: Plugin name. */
|
|
|
|
sprintf( __( 'More information about %s' ), esc_html( $name ) ),
|
|
|
|
esc_attr( $name ),
|
|
|
|
__( 'More Details' )
|
|
|
|
);
|
|
|
|
|
|
|
|
return $more_details_link;
|
|
|
|
}
|
2010-10-25 04:57:43 +02:00
|
|
|
}
|