2004-03-25 08:05:52 +01:00
< ? php
2008-08-16 09:27:34 +02:00
/**
* Plugins administration panel .
*
* @ package WordPress
* @ subpackage Administration
*/
/** WordPress Administration Bootstrap */
2020-02-06 07:33:11 +01:00
require_once __DIR__ . '/admin.php' ;
2004-03-25 08:05:52 +01:00
2017-12-01 00:11:00 +01:00
if ( ! current_user_can ( 'activate_plugins' ) ) {
2016-06-29 17:16:29 +02:00
wp_die ( __ ( 'Sorry, you are not allowed to manage plugins for this site.' ) );
2017-12-01 00:11:00 +01:00
}
2010-12-13 22:21:50 +01:00
2017-12-01 00:11:00 +01:00
$wp_list_table = _get_list_table ( 'WP_Plugins_List_Table' );
$pagenum = $wp_list_table -> get_pagenum ();
2009-08-01 23:12:17 +02:00
2010-09-22 02:10:39 +02:00
$action = $wp_list_table -> current_action ();
2008-06-04 20:09:31 +02:00
2017-12-01 00:11:00 +01:00
$plugin = isset ( $_REQUEST [ 'plugin' ] ) ? wp_unslash ( $_REQUEST [ 'plugin' ] ) : '' ;
$s = isset ( $_REQUEST [ 's' ] ) ? urlencode ( wp_unslash ( $_REQUEST [ 's' ] ) ) : '' ;
2008-06-04 20:09:31 +02:00
2010-09-22 02:10:39 +02:00
// Clean up request URI from temporary args for screen options/paging uri's to work as expected.
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
$query_args_to_remove = array (
'error' ,
'deleted' ,
'activate' ,
'activate-multi' ,
'deactivate' ,
'deactivate-multi' ,
'enabled-auto-update' ,
'disabled-auto-update' ,
'enabled-auto-update-multi' ,
'disabled-auto-update-multi' ,
'_error_nonce' ,
);
$_SERVER [ 'REQUEST_URI' ] = remove_query_arg ( $query_args_to_remove , $_SERVER [ 'REQUEST_URI' ] );
2009-05-17 11:39:32 +02:00
2015-02-05 05:19:23 +01:00
wp_enqueue_script ( 'updates' );
2010-09-22 02:10:39 +02:00
if ( $action ) {
2010-01-29 22:45:32 +01:00
2009-04-21 21:17:44 +02:00
switch ( $action ) {
2008-06-04 20:09:31 +02:00
case 'activate' :
2017-08-22 16:02:44 +02:00
if ( ! current_user_can ( 'activate_plugin' , $plugin ) ) {
wp_die ( __ ( 'Sorry, you are not allowed to activate this plugin.' ) );
}
2009-08-01 23:12:17 +02:00
2012-11-27 17:08:35 +01:00
if ( is_multisite () && ! is_network_admin () && is_network_only_plugin ( $plugin ) ) {
2017-12-01 00:11:00 +01:00
wp_redirect ( self_admin_url ( " plugins.php?plugin_status= $status &paged= $page &s= $s " ) );
2012-11-27 17:08:35 +01:00
exit ;
}
2017-12-01 00:11:00 +01:00
check_admin_referer ( 'activate-plugin_' . $plugin );
2009-05-28 13:02:16 +02:00
2017-12-01 00:11:00 +01:00
$result = activate_plugin ( $plugin , self_admin_url ( 'plugins.php?error=true&plugin=' . urlencode ( $plugin ) ), is_network_admin () );
2010-02-16 04:44:20 +01:00
if ( is_wp_error ( $result ) ) {
2020-05-16 20:42:12 +02:00
if ( 'unexpected_output' === $result -> get_error_code () ) {
2017-12-01 00:11:00 +01:00
$redirect = self_admin_url ( 'plugins.php?error=true&charsout=' . strlen ( $result -> get_error_data () ) . '&plugin=' . urlencode ( $plugin ) . " &plugin_status= $status &paged= $page &s= $s " );
wp_redirect ( add_query_arg ( '_error_nonce' , wp_create_nonce ( 'plugin-activation-error_' . $plugin ), $redirect ) );
2010-02-16 04:44:20 +01:00
exit ;
} else {
2017-12-01 00:11:00 +01:00
wp_die ( $result );
2010-02-16 04:44:20 +01:00
}
}
2009-05-28 13:02:16 +02:00
2012-04-19 05:41:29 +02:00
if ( ! is_network_admin () ) {
$recent = ( array ) get_option ( 'recently_activated' );
unset ( $recent [ $plugin ] );
update_option ( 'recently_activated' , $recent );
2015-09-25 21:16:27 +02:00
} else {
2015-10-07 19:11:25 +02:00
$recent = ( array ) get_site_option ( 'recently_activated' );
2015-09-25 21:16:27 +02:00
unset ( $recent [ $plugin ] );
2015-10-07 19:11:25 +02:00
update_site_option ( 'recently_activated' , $recent );
2008-06-04 20:09:31 +02:00
}
2012-04-19 05:41:29 +02:00
2020-05-16 20:42:12 +02:00
if ( isset ( $_GET [ 'from' ] ) && 'import' === $_GET [ 'from' ] ) {
2020-01-29 01:45:18 +01:00
// Overrides the ?error=true one above and redirects to the Imports page, stripping the -importer suffix.
wp_redirect ( self_admin_url ( 'import.php?import=' . str_replace ( '-importer' , '' , dirname ( $plugin ) ) ) );
2020-05-16 20:42:12 +02:00
} elseif ( isset ( $_GET [ 'from' ] ) && 'press-this' === $_GET [ 'from' ] ) {
2017-12-01 00:11:00 +01:00
wp_redirect ( self_admin_url ( 'press-this.php' ) );
2010-05-27 13:04:08 +02:00
} else {
2020-01-29 01:45:18 +01:00
// Overrides the ?error=true one above.
wp_redirect ( self_admin_url ( " plugins.php?activate=true&plugin_status= $status &paged= $page &s= $s " ) );
2010-05-27 13:04:08 +02:00
}
2008-06-04 20:09:31 +02:00
exit ;
2014-05-06 20:13:14 +02:00
2008-06-04 20:09:31 +02:00
case 'activate-selected' :
2017-12-01 00:11:00 +01:00
if ( ! current_user_can ( 'activate_plugins' ) ) {
wp_die ( __ ( 'Sorry, you are not allowed to activate plugins for this site.' ) );
}
2009-09-14 16:03:32 +02:00
2017-12-01 00:11:00 +01:00
check_admin_referer ( 'bulk-plugins' );
2009-05-28 13:02:16 +02:00
2017-09-19 12:11:43 +02:00
$plugins = isset ( $_POST [ 'checked' ] ) ? ( array ) wp_unslash ( $_POST [ 'checked' ] ) : array ();
2010-10-29 21:09:04 +02:00
2012-09-04 22:51:33 +02:00
if ( is_network_admin () ) {
foreach ( $plugins as $i => $plugin ) {
2014-03-05 19:26:15 +01:00
// Only activate plugins which are not already network activated.
if ( is_plugin_active_for_network ( $plugin ) ) {
2012-09-04 22:51:33 +02:00
unset ( $plugins [ $i ] );
2014-03-05 19:26:15 +01:00
}
2012-09-04 22:51:33 +02:00
}
} else {
foreach ( $plugins as $i => $plugin ) {
2014-03-05 19:26:15 +01:00
// Only activate plugins which are not already active and are not network-only when on Multisite.
if ( is_plugin_active ( $plugin ) || ( is_multisite () && is_network_only_plugin ( $plugin ) ) ) {
2012-09-04 22:51:33 +02:00
unset ( $plugins [ $i ] );
2014-03-05 19:26:15 +01:00
}
2017-08-22 16:02:44 +02:00
// Only activate plugins which the user can activate.
if ( ! current_user_can ( 'activate_plugin' , $plugin ) ) {
unset ( $plugins [ $i ] );
}
2012-09-04 22:51:33 +02:00
}
}
2010-10-29 21:09:04 +02:00
2017-12-01 00:11:00 +01:00
if ( empty ( $plugins ) ) {
wp_redirect ( self_admin_url ( " plugins.php?plugin_status= $status &paged= $page &s= $s " ) );
2009-05-28 13:02:16 +02:00
exit ;
}
2017-12-01 00:11:00 +01:00
activate_plugins ( $plugins , self_admin_url ( 'plugins.php?error=true' ), is_network_admin () );
2009-05-28 13:02:16 +02:00
2012-04-19 05:41:29 +02:00
if ( ! is_network_admin () ) {
2017-12-01 00:11:00 +01:00
$recent = ( array ) get_option ( 'recently_activated' );
2015-09-25 21:16:27 +02:00
} else {
2017-12-01 00:11:00 +01:00
$recent = ( array ) get_site_option ( 'recently_activated' );
2015-09-25 21:16:27 +02:00
}
foreach ( $plugins as $plugin ) {
unset ( $recent [ $plugin ] );
}
if ( ! is_network_admin () ) {
2012-04-19 05:41:29 +02:00
update_option ( 'recently_activated' , $recent );
2015-09-25 21:16:27 +02:00
} else {
2015-10-07 19:11:25 +02:00
update_site_option ( 'recently_activated' , $recent );
2012-04-19 05:41:29 +02:00
}
2008-01-09 10:37:27 +01:00
2017-12-01 00:11:00 +01:00
wp_redirect ( self_admin_url ( " plugins.php?activate-multi=true&plugin_status= $status &paged= $page &s= $s " ) );
2008-06-04 20:09:31 +02:00
exit ;
2014-05-06 20:13:14 +02:00
2017-12-01 00:11:00 +01:00
case 'update-selected' :
2010-08-11 23:54:51 +02:00
check_admin_referer ( 'bulk-plugins' );
2010-03-17 17:27:25 +01:00
2017-12-01 00:11:00 +01:00
if ( isset ( $_GET [ 'plugins' ] ) ) {
2017-09-19 12:11:43 +02:00
$plugins = explode ( ',' , wp_unslash ( $_GET [ 'plugins' ] ) );
2017-12-01 00:11:00 +01:00
} elseif ( isset ( $_POST [ 'checked' ] ) ) {
2017-09-19 12:11:43 +02:00
$plugins = ( array ) wp_unslash ( $_POST [ 'checked' ] );
2017-12-01 00:11:00 +01:00
} else {
2010-03-06 09:39:50 +01:00
$plugins = array ();
2017-12-01 00:11:00 +01:00
}
2010-03-17 17:27:25 +01:00
2017-12-01 00:11:00 +01:00
$title = __ ( 'Update Plugins' );
2010-03-06 09:39:50 +01:00
$parent_file = 'plugins.php' ;
2010-01-26 07:53:47 +01:00
2014-02-26 07:55:14 +01:00
wp_enqueue_script ( 'updates' );
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/admin-header.php' ;
2010-03-17 17:27:25 +01:00
2010-03-06 09:39:50 +01:00
echo '<div class="wrap">' ;
2015-06-27 17:41:25 +02:00
echo '<h1>' . esc_html ( $title ) . '</h1>' ;
2010-01-26 19:39:12 +01:00
2020-10-18 19:27:06 +02:00
$url = self_admin_url ( 'update.php?action=update-selected&plugins=' . urlencode ( implode ( ',' , $plugins ) ) );
2017-12-01 00:11:00 +01:00
$url = wp_nonce_url ( $url , 'bulk-update-plugins' );
2010-01-26 07:53:47 +01:00
2010-03-06 09:39:50 +01:00
echo " <iframe src=' $url ' style='width: 100%; height:100%; min-height:850px;'></iframe> " ;
echo '</div>' ;
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/admin-footer.php' ;
2010-01-26 07:53:47 +01:00
exit ;
2014-05-06 20:13:14 +02:00
2008-06-04 20:09:31 +02:00
case 'error_scrape' :
2017-08-22 16:02:44 +02:00
if ( ! current_user_can ( 'activate_plugin' , $plugin ) ) {
wp_die ( __ ( 'Sorry, you are not allowed to activate this plugin.' ) );
}
2009-08-01 23:12:17 +02:00
2017-12-01 00:11:00 +01:00
check_admin_referer ( 'plugin-activation-error_' . $plugin );
2009-05-28 13:02:16 +02:00
2017-12-01 00:11:00 +01:00
$valid = validate_plugin ( $plugin );
if ( is_wp_error ( $valid ) ) {
wp_die ( $valid );
}
2009-05-28 13:02:16 +02:00
2010-02-16 04:44:20 +01:00
if ( ! WP_DEBUG ) {
2011-04-12 11:21:13 +02:00
error_reporting ( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR );
2010-02-16 04:44:20 +01:00
}
2009-12-12 10:20:07 +01:00
2020-01-29 01:45:18 +01:00
ini_set ( 'display_errors' , true ); // Ensure that fatal errors are displayed.
// Go back to "sandbox" scope so we get the same errors as before.
2010-02-27 08:24:41 +01:00
plugin_sandbox_scrape ( $plugin );
2014-10-30 19:35:28 +01:00
/** This action is documented in wp-admin/includes/plugin.php */
2013-11-24 00:04:10 +01:00
do_action ( " activate_ { $plugin } " );
2008-06-04 20:09:31 +02:00
exit ;
2014-05-06 20:13:14 +02:00
2008-06-04 20:09:31 +02:00
case 'deactivate' :
2017-08-22 16:02:44 +02:00
if ( ! current_user_can ( 'deactivate_plugin' , $plugin ) ) {
wp_die ( __ ( 'Sorry, you are not allowed to deactivate this plugin.' ) );
}
2009-08-01 23:12:17 +02:00
2017-12-01 00:11:00 +01:00
check_admin_referer ( 'deactivate-plugin_' . $plugin );
2012-04-19 05:41:29 +02:00
2012-04-19 08:38:19 +02:00
if ( ! is_network_admin () && is_plugin_active_for_network ( $plugin ) ) {
2017-12-01 00:11:00 +01:00
wp_redirect ( self_admin_url ( " plugins.php?plugin_status= $status &paged= $page &s= $s " ) );
2012-04-19 05:41:29 +02:00
exit ;
}
deactivate_plugins ( $plugin , false , is_network_admin () );
2015-09-25 21:16:27 +02:00
if ( ! is_network_admin () ) {
2012-04-19 05:41:29 +02:00
update_option ( 'recently_activated' , array ( $plugin => time () ) + ( array ) get_option ( 'recently_activated' ) );
2015-09-25 21:16:27 +02:00
} else {
2015-10-07 19:11:25 +02:00
update_site_option ( 'recently_activated' , array ( $plugin => time () ) + ( array ) get_site_option ( 'recently_activated' ) );
2015-09-25 21:16:27 +02:00
}
2017-12-01 00:11:00 +01:00
if ( headers_sent () ) {
2010-10-04 06:26:58 +02:00
echo " <meta http-equiv='refresh' content=' " . esc_attr ( " 0;url=plugins.php?deactivate=true&plugin_status= $status &paged= $page &s= $s " ) . " ' /> " ;
2017-12-01 00:11:00 +01:00
} else {
wp_redirect ( self_admin_url ( " plugins.php?deactivate=true&plugin_status= $status &paged= $page &s= $s " ) );
}
2008-06-04 20:09:31 +02:00
exit ;
2014-05-06 20:13:14 +02:00
2008-06-04 20:09:31 +02:00
case 'deactivate-selected' :
2017-08-22 16:02:44 +02:00
if ( ! current_user_can ( 'deactivate_plugins' ) ) {
2017-12-01 00:11:00 +01:00
wp_die ( __ ( 'Sorry, you are not allowed to deactivate plugins for this site.' ) );
2017-08-22 16:02:44 +02:00
}
2009-08-01 23:12:17 +02:00
2017-12-01 00:11:00 +01:00
check_admin_referer ( 'bulk-plugins' );
2009-05-28 13:02:16 +02:00
2017-09-19 12:11:43 +02:00
$plugins = isset ( $_POST [ 'checked' ] ) ? ( array ) wp_unslash ( $_POST [ 'checked' ] ) : array ();
2012-04-19 05:41:29 +02:00
// Do not deactivate plugins which are already deactivated.
if ( is_network_admin () ) {
$plugins = array_filter ( $plugins , 'is_plugin_active_for_network' );
} else {
$plugins = array_filter ( $plugins , 'is_plugin_active' );
$plugins = array_diff ( $plugins , array_filter ( $plugins , 'is_plugin_active_for_network' ) );
2017-08-22 16:02:44 +02:00
foreach ( $plugins as $i => $plugin ) {
// Only deactivate plugins which the user can deactivate.
if ( ! current_user_can ( 'deactivate_plugin' , $plugin ) ) {
unset ( $plugins [ $i ] );
}
}
2012-04-19 05:41:29 +02:00
}
2017-12-01 00:11:00 +01:00
if ( empty ( $plugins ) ) {
wp_redirect ( self_admin_url ( " plugins.php?plugin_status= $status &paged= $page &s= $s " ) );
2009-05-28 13:02:16 +02:00
exit ;
}
2012-04-19 05:41:29 +02:00
deactivate_plugins ( $plugins , false , is_network_admin () );
2009-05-28 13:02:16 +02:00
2015-09-25 21:16:27 +02:00
$deactivated = array ();
foreach ( $plugins as $plugin ) {
$deactivated [ $plugin ] = time ();
}
2012-04-19 05:41:29 +02:00
if ( ! is_network_admin () ) {
update_option ( 'recently_activated' , $deactivated + ( array ) get_option ( 'recently_activated' ) );
2015-09-25 21:16:27 +02:00
} else {
2015-10-07 19:11:25 +02:00
update_site_option ( 'recently_activated' , $deactivated + ( array ) get_site_option ( 'recently_activated' ) );
2012-04-19 05:41:29 +02:00
}
2009-05-28 13:02:16 +02:00
2017-12-01 00:11:00 +01:00
wp_redirect ( self_admin_url ( " plugins.php?deactivate-multi=true&plugin_status= $status &paged= $page &s= $s " ) );
2008-06-04 20:09:31 +02:00
exit ;
2014-05-06 20:13:14 +02:00
2008-06-04 20:09:31 +02:00
case 'delete-selected' :
2017-12-01 00:11:00 +01:00
if ( ! current_user_can ( 'delete_plugins' ) ) {
wp_die ( __ ( 'Sorry, you are not allowed to delete plugins for this site.' ) );
2014-10-08 21:05:20 +02:00
}
2008-08-09 07:36:14 +02:00
2017-12-01 00:11:00 +01:00
check_admin_referer ( 'bulk-plugins' );
2008-08-09 07:36:14 +02:00
2020-01-29 01:45:18 +01:00
// $_POST = from the plugin form; $_GET = from the FTP details screen.
2017-09-19 12:11:43 +02:00
$plugins = isset ( $_REQUEST [ 'checked' ] ) ? ( array ) wp_unslash ( $_REQUEST [ 'checked' ] ) : array ();
2010-12-17 22:53:47 +01:00
if ( empty ( $plugins ) ) {
2017-12-01 00:11:00 +01:00
wp_redirect ( self_admin_url ( " plugins.php?plugin_status= $status &paged= $page &s= $s " ) );
2009-05-28 13:02:16 +02:00
exit ;
}
2020-01-29 01:45:18 +01:00
$plugins = array_filter ( $plugins , 'is_plugin_inactive' ); // Do not allow to delete activated plugins.
2010-12-17 22:53:47 +01:00
if ( empty ( $plugins ) ) {
wp_redirect ( self_admin_url ( " plugins.php?error=true&main=true&plugin_status= $status &paged= $page &s= $s " ) );
exit ;
}
2017-03-06 13:55:41 +01:00
// Bail on all if any paths are invalid.
2020-01-29 01:45:18 +01:00
// validate_file() returns truthy for invalid files.
2017-03-06 13:55:41 +01:00
$invalid_plugin_files = array_filter ( $plugins , 'validate_file' );
if ( $invalid_plugin_files ) {
2017-12-01 00:11:00 +01:00
wp_redirect ( self_admin_url ( " plugins.php?plugin_status= $status &paged= $page &s= $s " ) );
2017-03-06 13:55:41 +01:00
exit ;
}
2020-02-06 07:33:11 +01:00
require ABSPATH . 'wp-admin/update.php' ;
2008-06-04 20:09:31 +02:00
$parent_file = 'plugins.php' ;
2008-08-09 07:36:14 +02:00
2017-12-01 00:11:00 +01:00
if ( ! isset ( $_REQUEST [ 'verify-delete' ] ) ) {
wp_enqueue_script ( 'jquery' );
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/admin-header.php' ;
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
2008-06-16 20:35:48 +02:00
?>
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
< div class = " wrap " >
2008-06-16 20:35:48 +02:00
< ? php
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
$plugin_info = array ();
$have_non_network_plugins = false ;
2017-12-01 00:11:00 +01:00
foreach ( ( array ) $plugins as $plugin ) {
$plugin_slug = dirname ( $plugin );
2020-05-16 20:42:12 +02:00
if ( '.' === $plugin_slug ) {
2019-07-01 14:52:01 +02:00
$data = get_plugin_data ( WP_PLUGIN_DIR . '/' . $plugin );
if ( $data ) {
2017-12-01 00:11:00 +01:00
$plugin_info [ $plugin ] = $data ;
$plugin_info [ $plugin ][ 'is_uninstallable' ] = is_uninstallable_plugin ( $plugin );
if ( ! $plugin_info [ $plugin ][ 'Network' ] ) {
$have_non_network_plugins = true ;
2010-02-27 23:01:22 +01:00
}
2017-12-01 00:11:00 +01:00
}
} else {
// Get plugins list from that folder.
2019-07-01 14:52:01 +02:00
$folder_plugins = get_plugins ( '/' . $plugin_slug );
if ( $folder_plugins ) {
2017-12-01 00:11:00 +01:00
foreach ( $folder_plugins as $plugin_file => $data ) {
$plugin_info [ $plugin_file ] = _get_plugin_data_markup_translate ( $plugin_file , $data );
$plugin_info [ $plugin_file ][ 'is_uninstallable' ] = is_uninstallable_plugin ( $plugin );
if ( ! $plugin_info [ $plugin_file ][ 'Network' ] ) {
$have_non_network_plugins = true ;
2014-10-08 21:05:20 +02:00
}
}
2008-06-16 20:35:48 +02:00
}
}
2017-12-01 00:11:00 +01:00
}
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
$plugins_to_delete = count ( $plugin_info );
2008-06-16 20:35:48 +02:00
?>
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
< ? php if ( 1 === $plugins_to_delete ) : ?>
2015-06-27 17:41:25 +02:00
< h1 >< ? php _e ( 'Delete Plugin' ); ?> </h1>
2015-03-31 20:45:28 +02:00
< ? php if ( $have_non_network_plugins && is_network_admin () ) : ?>
< div class = " error " >< p >< strong >< ? php _e ( 'Caution:' ); ?> </strong> <?php _e( 'This plugin may be active on other sites in the network.' ); ?></p></div>
< ? php endif ; ?>
< p >< ? php _e ( 'You are about to remove the following plugin:' ); ?> </p>
2017-12-01 00:11:00 +01:00
< ? php else : ?>
2015-06-27 17:41:25 +02:00
< h1 >< ? php _e ( 'Delete Plugins' ); ?> </h1>
2015-03-31 20:45:28 +02:00
< ? php if ( $have_non_network_plugins && is_network_admin () ) : ?>
< div class = " error " >< p >< strong >< ? php _e ( 'Caution:' ); ?> </strong> <?php _e( 'These plugins may be active on other sites in the network.' ); ?></p></div>
< ? php endif ; ?>
< p >< ? php _e ( 'You are about to remove the following plugins:' ); ?> </p>
2010-12-18 00:21:15 +01:00
< ? php endif ; ?>
2009-05-16 09:09:03 +02:00
< ul class = " ul-disc " >
2008-08-09 07:36:14 +02:00
< ? php
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
2010-02-27 23:01:22 +01:00
$data_to_delete = false ;
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
2010-02-27 23:01:22 +01:00
foreach ( $plugin_info as $plugin ) {
if ( $plugin [ 'is_uninstallable' ] ) {
2019-09-03 02:41:05 +02:00
/* translators: 1: Plugin name, 2: Plugin author. */
2016-02-24 02:02:25 +01:00
echo '<li>' , sprintf ( __ ( '%1$s by %2$s (will also <strong>delete its data</strong>)' ), '<strong>' . $plugin [ 'Name' ] . '</strong>' , '<em>' . $plugin [ 'AuthorName' ] . '</em>' ), '</li>' ;
2010-02-27 23:01:22 +01:00
$data_to_delete = true ;
} else {
2019-09-03 02:41:05 +02:00
/* translators: 1: Plugin name, 2: Plugin author. */
2017-12-01 00:11:00 +01:00
echo '<li>' , sprintf ( _x ( '%1$s by %2$s' , 'plugin' ), '<strong>' . $plugin [ 'Name' ] . '</strong>' , '<em>' . $plugin [ 'AuthorName' ] ) . '</em>' , '</li>' ;
2010-02-27 23:01:22 +01:00
}
}
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
2008-06-16 20:35:48 +02:00
?>
</ ul >
2017-12-01 00:11:00 +01:00
< p >
< ? php
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
2017-12-01 00:11:00 +01:00
if ( $data_to_delete ) {
2019-07-04 11:56:57 +02:00
_e ( 'Are you sure you want to delete these files and data?' );
2017-12-01 00:11:00 +01:00
} else {
2019-07-04 11:56:57 +02:00
_e ( 'Are you sure you want to delete these files?' );
2017-12-01 00:11:00 +01:00
}
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
2017-12-01 00:11:00 +01:00
?>
</ p >
< form method = " post " action = " <?php echo esc_url( $_SERVER['REQUEST_URI'] ); ?> " style = " display:inline; " >
2008-06-16 20:35:48 +02:00
< input type = " hidden " name = " verify-delete " value = " 1 " />
2009-04-04 13:15:39 +02:00
< input type = " hidden " name = " action " value = " delete-selected " />
2008-06-16 20:35:48 +02:00
< ? php
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
2017-12-01 00:11:00 +01:00
foreach ( ( array ) $plugins as $plugin ) {
echo '<input type="hidden" name="checked[]" value="' . esc_attr ( $plugin ) . '" />' ;
}
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
2008-06-16 20:35:48 +02:00
?>
2017-12-01 00:11:00 +01:00
< ? php wp_nonce_field ( 'bulk-plugins' ); ?>
2016-09-28 21:54:28 +02:00
< ? php submit_button ( $data_to_delete ? __ ( 'Yes, delete these files and data' ) : __ ( 'Yes, delete these files' ), '' , 'submit' , false ); ?>
2008-06-16 20:35:48 +02:00
</ form >
2015-03-09 03:11:28 +01:00
< ? php
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
2015-03-09 03:11:28 +01:00
$referer = wp_get_referer ();
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
2015-03-09 03:11:28 +01:00
?>
< form method = " post " action = " <?php echo $referer ? esc_url( $referer ) : ''; ?> " style = " display:inline; " >
2016-09-28 21:54:28 +02:00
< ? php submit_button ( __ ( 'No, return me to the plugin list' ), '' , 'submit' , false ); ?>
2008-06-16 20:35:48 +02:00
</ form >
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
</ div >
2008-06-16 20:35:48 +02:00
< ? php
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/admin-footer.php' ;
2008-06-16 20:35:48 +02:00
exit ;
2015-09-26 15:11:25 +02:00
} else {
$plugins_to_delete = count ( $plugins );
2020-01-29 01:45:18 +01:00
} // End if verify-delete.
2015-09-26 15:11:25 +02:00
$delete_result = delete_plugins ( $plugins );
2008-06-10 18:57:33 +02:00
2020-01-29 01:45:18 +01:00
// Store the result in a cache rather than a URL param due to object type & length.
set_transient ( 'plugins_delete_result_' . $user_ID , $delete_result );
2017-12-01 00:11:00 +01:00
wp_redirect ( self_admin_url ( " plugins.php?deleted= $plugins_to_delete &plugin_status= $status &paged= $page &s= $s " ) );
2009-05-17 11:39:32 +02:00
exit ;
2008-07-01 01:12:18 +02:00
case 'clear-recent-list' :
2015-09-25 21:16:27 +02:00
if ( ! is_network_admin () ) {
2012-04-19 05:41:29 +02:00
update_option ( 'recently_activated' , array () );
2015-09-25 21:16:27 +02:00
} else {
2015-10-07 19:11:25 +02:00
update_site_option ( 'recently_activated' , array () );
2015-09-25 21:16:27 +02:00
}
2016-09-23 22:33:30 +02:00
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
break ;
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
case 'resume' :
if ( is_multisite () ) {
return ;
}
if ( ! current_user_can ( 'resume_plugin' , $plugin ) ) {
wp_die ( __ ( 'Sorry, you are not allowed to resume this plugin.' ) );
}
check_admin_referer ( 'resume-plugin_' . $plugin );
$result = resume_plugin ( $plugin , self_admin_url ( " plugins.php?error=resuming&plugin_status= $status &paged= $page &s= $s " ) );
if ( is_wp_error ( $result ) ) {
wp_die ( $result );
}
wp_redirect ( self_admin_url ( " plugins.php?resume=true&plugin_status= $status &paged= $page &s= $s " ) );
exit ;
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
case 'enable-auto-update' :
case 'disable-auto-update' :
case 'enable-auto-update-selected' :
case 'disable-auto-update-selected' :
if ( ! current_user_can ( 'update_plugins' ) || ! wp_is_auto_update_enabled_for_type ( 'plugin' ) ) {
wp_die ( __ ( 'Sorry, you are not allowed to manage plugins automatic updates.' ) );
}
if ( is_multisite () && ! is_network_admin () ) {
wp_die ( __ ( 'Please connect to your network admin to manage plugins automatic updates.' ) );
}
$redirect = self_admin_url ( " plugins.php?plugin_status= { $status } &paged= { $page } &s= { $s } " );
if ( 'enable-auto-update' === $action || 'disable-auto-update' === $action ) {
if ( empty ( $plugin ) ) {
wp_redirect ( $redirect );
exit ;
}
check_admin_referer ( 'updates' );
} else {
if ( empty ( $_POST [ 'checked' ] ) ) {
wp_redirect ( $redirect );
exit ;
}
check_admin_referer ( 'bulk-plugins' );
}
$auto_updates = ( array ) get_site_option ( 'auto_update_plugins' , array () );
if ( 'enable-auto-update' === $action ) {
$auto_updates [] = $plugin ;
$auto_updates = array_unique ( $auto_updates );
$redirect = add_query_arg ( array ( 'enabled-auto-update' => 'true' ), $redirect );
} elseif ( 'disable-auto-update' === $action ) {
$auto_updates = array_diff ( $auto_updates , array ( $plugin ) );
$redirect = add_query_arg ( array ( 'disabled-auto-update' => 'true' ), $redirect );
} else {
$plugins = ( array ) wp_unslash ( $_POST [ 'checked' ] );
if ( 'enable-auto-update-selected' === $action ) {
$new_auto_updates = array_merge ( $auto_updates , $plugins );
$new_auto_updates = array_unique ( $new_auto_updates );
$query_args = array ( 'enabled-auto-update-multi' => 'true' );
} else {
$new_auto_updates = array_diff ( $auto_updates , $plugins );
$query_args = array ( 'disabled-auto-update-multi' => 'true' );
}
// Return early if all selected plugins already have auto-updates enabled or disabled.
// Must use non-strict comparison, so that array order is not treated as significant.
if ( $new_auto_updates == $auto_updates ) { // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
wp_redirect ( $redirect );
exit ;
}
$auto_updates = $new_auto_updates ;
$redirect = add_query_arg ( $query_args , $redirect );
}
/** This filter is documented in wp-admin/includes/class-wp-plugins-list-table.php */
$all_items = apply_filters ( 'all_plugins' , get_plugins () );
// Remove plugins that don't exist or have been deleted since the option was last updated.
$auto_updates = array_intersect ( $auto_updates , array_keys ( $all_items ) );
update_site_option ( 'auto_update_plugins' , $auto_updates );
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
wp_redirect ( $redirect );
exit ;
2016-09-23 22:33:30 +02:00
default :
if ( isset ( $_POST [ 'checked' ] ) ) {
2017-12-01 00:11:00 +01:00
check_admin_referer ( 'bulk-plugins' );
2019-12-03 14:58:05 +01:00
$screen = get_current_screen () -> id ;
2016-09-23 22:33:30 +02:00
$sendback = wp_get_referer ();
2019-12-03 14:58:05 +01:00
$plugins = isset ( $_POST [ 'checked' ] ) ? ( array ) wp_unslash ( $_POST [ 'checked' ] ) : array ();
2016-09-23 22:33:30 +02:00
2019-12-03 14:58:05 +01:00
/** This action is documented in wp-admin/edit.php */
2020-01-29 01:45:18 +01:00
$sendback = apply_filters ( " handle_bulk_actions- { $screen } " , $sendback , $action , $plugins ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
2016-09-23 22:33:30 +02:00
wp_safe_redirect ( $sendback );
exit ;
}
break ;
2008-06-04 20:09:31 +02:00
}
2004-03-25 22:04:36 +01:00
}
2010-08-22 13:22:46 +02:00
$wp_list_table -> prepare_items ();
2010-08-11 23:54:51 +02:00
2017-12-01 00:11:00 +01:00
wp_enqueue_script ( 'plugin-install' );
2008-11-07 23:11:14 +01:00
add_thickbox ();
2008-06-04 20:09:31 +02:00
2015-03-10 16:32:27 +01:00
add_screen_option ( 'per_page' , array ( 'default' => 999 ) );
2011-10-07 06:57:12 +02:00
2017-12-01 00:11:00 +01:00
get_current_screen () -> add_help_tab (
array (
'id' => 'overview' ,
'title' => __ ( 'Overview' ),
'content' =>
2019-07-05 07:21:56 +02:00
'<p>' . __ ( 'Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.' ) . '</p>' .
'<p>' . __ ( 'The search for installed plugins will search for terms in their name, description, or author.' ) . ' <span id="live-search-desc" class="hide-if-no-js">' . __ ( 'The search results will be updated as you type.' ) . '</span></p>' .
2017-12-01 00:11:00 +01:00
'<p>' . sprintf (
2019-09-03 02:41:05 +02:00
/* translators: %s: WordPress Plugin Directory URL. */
2019-07-05 07:21:56 +02:00
__ ( 'If you would like to see more plugins to choose from, click on the “Add New” button and you will be able to browse or search for additional plugins from the <a href="%s">WordPress Plugin Directory</a>. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they’re free!' ),
2017-12-01 00:11:00 +01:00
__ ( 'https://wordpress.org/plugins/' )
) . '</p>' ,
)
);
get_current_screen () -> add_help_tab (
array (
'id' => 'compatibility-problems' ,
'title' => __ ( 'Troubleshooting' ),
'content' =>
2019-07-05 07:21:56 +02:00
'<p>' . __ ( 'Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin’s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue.' ) . '</p>' .
2017-12-01 00:11:00 +01:00
'<p>' . sprintf (
2020-01-20 16:43:04 +01:00
/* translators: %s: WP_PLUGIN_DIR constant value. */
2019-07-05 07:21:56 +02:00
__ ( 'If something goes wrong with a plugin and you can’t use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated.' ),
2017-12-01 00:11:00 +01:00
'<code>' . WP_PLUGIN_DIR . '</code>'
) . '</p>' ,
)
);
2011-11-02 04:12:37 +01:00
2020-06-16 19:29:07 +02:00
$help_sidebar_autoupdates = '' ;
2020-06-19 23:14:08 +02:00
2020-06-16 19:29:07 +02:00
if ( current_user_can ( 'update_plugins' ) && wp_is_auto_update_enabled_for_type ( 'plugin' ) ) {
get_current_screen () -> add_help_tab (
array (
'id' => 'plugins-themes-auto-updates' ,
'title' => __ ( 'Auto-updates' ),
'content' =>
'<p>' . __ ( 'Auto-updates can be enabled or disabled for each individual plugin. Plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.' ) . '</p>' .
Upgrade/Install: Enhance auto-updates to be disabled for plugins that don't suport updates.
This removes the toggle UI when updates aren't available. When plugins use the filter, the UI is updated to show that they are being controlled via code. And then removed entirely when not available.
See #50798.
Fixes #50280.
Props elrae, pbiron, SergeyBiryukov, audrasjb, azaozz, StephenCronin, whyisjake, dd32, TimothyBlynJacobs, desrosj.
Built from https://develop.svn.wordpress.org/trunk@48669
git-svn-id: http://core.svn.wordpress.org/trunk@48431 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-28 18:32:01 +02:00
'<p>' . __ ( 'Auto-updates are only available for plugins recognized by WordPress.org, or that include a compatible update system.' ) . '</p>' .
2020-06-16 19:29:07 +02:00
'<p>' . __ ( 'Please note: Third-party themes and plugins, or custom code, may override WordPress scheduling.' ) . '</p>' ,
)
);
$help_sidebar_autoupdates = '<p>' . __ ( '<a href="https://wordpress.org/support/article/plugins-themes-auto-updates/">Learn more: Auto-updates documentation</a>' ) . '</p>' ;
}
2011-11-02 21:14:10 +01:00
get_current_screen () -> set_help_sidebar (
2017-12-01 00:11:00 +01:00
'<p><strong>' . __ ( 'For more information:' ) . '</strong></p>' .
2019-07-26 00:45:57 +02:00
'<p>' . __ ( '<a href="https://wordpress.org/support/article/managing-plugins/">Documentation on Managing Plugins</a>' ) . '</p>' .
2020-06-19 23:14:08 +02:00
$help_sidebar_autoupdates .
'<p>' . __ ( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>'
2010-05-26 22:19:59 +02:00
);
2009-04-19 03:11:13 +02:00
2017-12-01 00:11:00 +01:00
get_current_screen () -> set_screen_reader_content (
array (
'heading_views' => __ ( 'Filter plugins list' ),
'heading_pagination' => __ ( 'Plugins list navigation' ),
'heading_list' => __ ( 'Plugins list' ),
)
);
2015-10-07 03:28:25 +02:00
2017-12-01 00:11:00 +01:00
$title = __ ( 'Plugins' );
2010-07-30 23:33:39 +02:00
$parent_file = 'plugins.php' ;
2010-05-26 22:19:59 +02:00
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/admin-header.php' ;
2004-03-25 08:05:52 +01:00
2010-08-12 01:49:30 +02:00
$invalid = validate_active_plugins ();
2015-09-20 05:01:24 +02:00
if ( ! empty ( $invalid ) ) {
foreach ( $invalid as $plugin_file => $error ) {
echo '<div id="message" class="error"><p>' ;
printf (
2019-09-03 02:41:05 +02:00
/* translators: 1: Plugin file, 2: Error message. */
2019-05-26 16:36:51 +02:00
__ ( 'The plugin %1$s has been deactivated due to an error: %2$s' ),
2015-09-20 05:01:24 +02:00
'<code>' . esc_html ( $plugin_file ) . '</code>' ,
2017-12-01 00:11:00 +01:00
$error -> get_error_message ()
);
2015-09-20 05:01:24 +02:00
echo '</p></div>' ;
}
}
2004-04-14 21:04:14 +02:00
2017-12-01 00:11:00 +01:00
if ( isset ( $_GET [ 'error' ] ) ) :
2010-02-16 04:44:20 +01:00
2017-12-01 00:11:00 +01:00
if ( isset ( $_GET [ 'main' ] ) ) {
2010-12-17 22:53:47 +01:00
$errmsg = __ ( 'You cannot delete a plugin while it is active on the main site.' );
2017-12-01 00:11:00 +01:00
} elseif ( isset ( $_GET [ 'charsout' ] ) ) {
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
$errmsg = sprintf (
2019-09-03 02:41:05 +02:00
/* translators: %d: Number of characters. */
2018-10-02 21:30:23 +02:00
_n (
'The plugin generated %d character of <strong>unexpected output</strong> during activation.' ,
'The plugin generated %d characters of <strong>unexpected output</strong> during activation.' ,
$_GET [ 'charsout' ]
),
$_GET [ 'charsout' ]
);
$errmsg .= ' ' . __ ( 'If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.' );
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
} elseif ( 'resuming' === $_GET [ 'error' ] ) {
$errmsg = __ ( 'Plugin could not be resumed because it triggered a <strong>fatal error</strong>.' );
2017-12-01 00:11:00 +01:00
} else {
$errmsg = __ ( 'Plugin could not be activated because it triggered a <strong>fatal error</strong>.' );
}
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
2010-02-16 04:44:20 +01:00
?>
2014-05-31 22:10:15 +02:00
< div id = " message " class = " error " >< p >< ? php echo $errmsg ; ?> </p>
2007-06-25 20:57:54 +02:00
< ? php
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
2017-12-01 00:11:00 +01:00
if ( ! isset ( $_GET [ 'main' ] ) && ! isset ( $_GET [ 'charsout' ] ) && wp_verify_nonce ( $_GET [ '_error_nonce' ], 'plugin-activation-error_' . $plugin ) ) {
$iframe_url = add_query_arg (
array (
2015-10-13 04:12:24 +02:00
'action' => 'error_scrape' ,
'plugin' => urlencode ( $plugin ),
'_wpnonce' => urlencode ( $_GET [ '_error_nonce' ] ),
2018-08-17 03:51:36 +02:00
),
admin_url ( 'plugins.php' )
2017-12-01 00:11:00 +01:00
);
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
2018-08-17 03:51:36 +02:00
?>
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
< iframe style = " border:0 " width = " 100% " height = " 70px " src = " <?php echo esc_url( $iframe_url ); ?> " ></ iframe >
2018-08-17 03:51:36 +02:00
< ? php
2017-12-01 00:11:00 +01:00
}
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
2007-06-25 20:57:54 +02:00
?>
</ div >
2018-08-17 03:51:36 +02:00
< ? php
2017-12-01 00:11:00 +01:00
elseif ( isset ( $_GET [ 'deleted' ] ) ) :
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
$delete_result = get_transient ( 'plugins_delete_result_' . $user_ID );
// Delete it once we're done.
delete_transient ( 'plugins_delete_result_' . $user_ID );
2009-05-17 11:39:32 +02:00
2017-12-01 00:11:00 +01:00
if ( is_wp_error ( $delete_result ) ) :
?>
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
< div id = " message " class = " error notice is-dismissible " >
< p >
< ? php
printf (
2019-09-03 02:41:05 +02:00
/* translators: %s: Error message. */
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
__ ( 'Plugin could not be deleted due to an error: %s' ),
$delete_result -> get_error_message ()
);
?>
</ p >
</ div >
2008-06-04 20:09:31 +02:00
< ? php else : ?>
2015-09-24 05:42:25 +02:00
< div id = " message " class = " updated notice is-dismissible " >
< p >
2015-09-24 23:07:25 +02:00
< ? php
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
if ( 1 === ( int ) $_GET [ 'deleted' ] ) {
2019-05-26 16:36:51 +02:00
_e ( 'The selected plugin has been deleted.' );
2015-09-24 23:07:25 +02:00
} else {
2019-05-26 16:36:51 +02:00
_e ( 'The selected plugins have been deleted.' );
2015-09-24 23:07:25 +02:00
}
2015-09-24 05:42:25 +02:00
?>
</ p >
</ div >
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
< ? php endif ; ?>
2017-12-01 00:11:00 +01:00
< ? php elseif ( isset ( $_GET [ 'activate' ] ) ) : ?>
2019-05-26 16:36:51 +02:00
< div id = " message " class = " updated notice is-dismissible " >< p >< ? php _e ( 'Plugin activated.' ); ?> </p></div>
2017-12-01 00:11:00 +01:00
< ? php elseif ( isset ( $_GET [ 'activate-multi' ] ) ) : ?>
2019-05-26 16:36:51 +02:00
< div id = " message " class = " updated notice is-dismissible " >< p >< ? php _e ( 'Selected plugins activated.' ); ?> </p></div>
2017-12-01 00:11:00 +01:00
< ? php elseif ( isset ( $_GET [ 'deactivate' ] ) ) : ?>
2019-05-26 16:36:51 +02:00
< div id = " message " class = " updated notice is-dismissible " >< p >< ? php _e ( 'Plugin deactivated.' ); ?> </p></div>
2017-12-01 00:11:00 +01:00
< ? php elseif ( isset ( $_GET [ 'deactivate-multi' ] ) ) : ?>
2019-05-26 16:36:51 +02:00
< div id = " message " class = " updated notice is-dismissible " >< p >< ? php _e ( 'Selected plugins deactivated.' ); ?> </p></div>
2020-05-16 20:42:12 +02:00
< ? php elseif ( 'update-selected' === $action ) : ?>
2017-12-01 00:11:00 +01:00
< div id = " message " class = " updated notice is-dismissible " >< p >< ? php _e ( 'All selected plugins are up to date.' ); ?> </p></div>
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
< ? php elseif ( isset ( $_GET [ 'resume' ] ) ) : ?>
2019-05-26 16:36:51 +02:00
< div id = " message " class = " updated notice is-dismissible " >< p >< ? php _e ( 'Plugin resumed.' ); ?> </p></div>
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
< ? php elseif ( isset ( $_GET [ 'enabled-auto-update' ] ) ) : ?>
< div id = " message " class = " updated notice is-dismissible " >< p >< ? php _e ( 'Plugin will be auto-updated.' ); ?> </p></div>
< ? php elseif ( isset ( $_GET [ 'disabled-auto-update' ] ) ) : ?>
< div id = " message " class = " updated notice is-dismissible " >< p >< ? php _e ( 'Plugin will no longer be auto-updated.' ); ?> </p></div>
< ? php elseif ( isset ( $_GET [ 'enabled-auto-update-multi' ] ) ) : ?>
< div id = " message " class = " updated notice is-dismissible " >< p >< ? php _e ( 'Selected plugins will be auto-updated.' ); ?> </p></div>
< ? php elseif ( isset ( $_GET [ 'disabled-auto-update-multi' ] ) ) : ?>
< div id = " message " class = " updated notice is-dismissible " >< p >< ? php _e ( 'Selected plugins will no longer be auto-updated.' ); ?> </p></div>
2004-04-14 21:04:14 +02:00
< ? php endif ; ?>
2004-03-25 08:05:52 +01:00
< div class = " wrap " >
2017-12-01 00:11:00 +01:00
< h1 class = " wp-heading-inline " >
< ? php
2016-12-07 19:48:40 +01:00
echo esc_html ( $title );
2017-12-01 00:11:00 +01:00
?>
</ h1 >
2016-12-07 19:48:40 +01:00
< ? php
2017-12-01 00:11:00 +01:00
if ( ( ! is_multisite () || is_network_admin () ) && current_user_can ( 'install_plugins' ) ) {
2018-08-17 03:51:36 +02:00
?>
2016-12-07 19:48:40 +01:00
< a href = " <?php echo self_admin_url( 'plugin-install.php' ); ?> " class = " page-title-action " >< ? php echo esc_html_x ( 'Add New' , 'plugin' ); ?> </a>
2018-08-17 03:51:36 +02:00
< ? php
2016-01-14 21:06:25 +01:00
}
if ( strlen ( $s ) ) {
2019-09-03 02:41:05 +02:00
/* translators: %s: Search query. */
2016-02-17 21:15:26 +01:00
printf ( '<span class="subtitle">' . __ ( 'Search results for “%s”' ) . '</span>' , esc_html ( urldecode ( $s ) ) );
2016-01-14 21:06:25 +01:00
}
?>
2016-12-07 19:48:40 +01:00
< hr class = " wp-header-end " >
2009-04-21 08:49:53 +02:00
2013-11-24 00:04:10 +01:00
< ? php
/**
* Fires before the plugins list table is rendered .
*
* This hook also fires before the plugins list table is rendered in the Network Admin .
*
* Please note : The 'active' portion of the hook name does not refer to whether the current
* view is for active plugins , but rather all plugins actively - installed .
*
* @ since 3.0 . 0
*
2018-03-25 20:10:32 +02:00
* @ param array [] $plugins_all An array of arrays containing information on all installed plugins .
2013-11-24 00:04:10 +01:00
*/
do_action ( 'pre_current_active_plugins' , $plugins [ 'all' ] );
?>
2010-12-10 21:22:34 +01:00
< ? php $wp_list_table -> views (); ?>
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
< form class = " search-form search-plugins " method = " get " >
2011-05-14 21:41:42 +02:00
< ? php $wp_list_table -> search_box ( __ ( 'Search Installed Plugins' ), 'plugin' ); ?>
2011-10-18 21:18:08 +02:00
</ form >
2015-02-05 05:19:23 +01:00
< form method = " post " id = " bulk-action-form " >
2010-09-05 23:26:27 +02:00
2017-12-01 00:11:00 +01:00
< input type = " hidden " name = " plugin_status " value = " <?php echo esc_attr( $status ); ?> " />
< input type = " hidden " name = " paged " value = " <?php echo esc_attr( $page ); ?> " />
2008-06-04 20:09:31 +02:00
2010-08-22 13:22:46 +02:00
< ? php $wp_list_table -> display (); ?>
2008-06-04 20:09:31 +02:00
</ form >
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
< span class = " spinner " ></ span >
2004-03-25 08:05:52 +01:00
</ div >
< ? php
2015-03-18 04:18:27 +01:00
wp_print_request_filesystem_credentials_modal ();
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
wp_print_admin_notice_templates ();
wp_print_update_row_templates ();
2015-03-18 04:18:27 +01:00
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/admin-footer.php' ;