PageRenderTime 46ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/wp-admin/plugins.php

https://gitlab.com/Blueprint-Marketing/WordPress-1
PHP | 450 lines | 353 code | 67 blank | 30 comment | 69 complexity | 5f29b2381781337b1dd56e8027fd7056 MD5 | raw file
  1. <?php
  2. /**
  3. * Plugins administration panel.
  4. *
  5. * @package WordPress
  6. * @subpackage Administration
  7. */
  8. /** WordPress Administration Bootstrap */
  9. require_once( dirname( __FILE__ ) . '/admin.php' );
  10. if ( ! current_user_can('activate_plugins') )
  11. wp_die( __( 'You do not have sufficient permissions to manage plugins for this site.' ) );
  12. $wp_list_table = _get_list_table('WP_Plugins_List_Table');
  13. $pagenum = $wp_list_table->get_pagenum();
  14. $action = $wp_list_table->current_action();
  15. $plugin = isset($_REQUEST['plugin']) ? $_REQUEST['plugin'] : '';
  16. $s = isset($_REQUEST['s']) ? urlencode($_REQUEST['s']) : '';
  17. // Clean up request URI from temporary args for screen options/paging uri's to work as expected.
  18. $_SERVER['REQUEST_URI'] = remove_query_arg(array('error', 'deleted', 'activate', 'activate-multi', 'deactivate', 'deactivate-multi', '_error_nonce'), $_SERVER['REQUEST_URI']);
  19. if ( $action ) {
  20. switch ( $action ) {
  21. case 'activate':
  22. if ( ! current_user_can('activate_plugins') )
  23. wp_die(__('You do not have sufficient permissions to activate plugins for this site.'));
  24. if ( is_multisite() && ! is_network_admin() && is_network_only_plugin( $plugin ) ) {
  25. wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
  26. exit;
  27. }
  28. check_admin_referer('activate-plugin_' . $plugin);
  29. $result = activate_plugin($plugin, self_admin_url('plugins.php?error=true&plugin=' . $plugin), is_network_admin() );
  30. if ( is_wp_error( $result ) ) {
  31. if ( 'unexpected_output' == $result->get_error_code() ) {
  32. $redirect = self_admin_url('plugins.php?error=true&charsout=' . strlen($result->get_error_data()) . '&plugin=' . $plugin . "&plugin_status=$status&paged=$page&s=$s");
  33. wp_redirect(add_query_arg('_error_nonce', wp_create_nonce('plugin-activation-error_' . $plugin), $redirect));
  34. exit;
  35. } else {
  36. wp_die($result);
  37. }
  38. }
  39. if ( ! is_network_admin() ) {
  40. $recent = (array) get_option( 'recently_activated' );
  41. unset( $recent[ $plugin ] );
  42. update_option( 'recently_activated', $recent );
  43. }
  44. if ( isset($_GET['from']) && 'import' == $_GET['from'] ) {
  45. wp_redirect( self_admin_url("import.php?import=" . str_replace('-importer', '', dirname($plugin))) ); // overrides the ?error=true one above and redirects to the Imports page, stripping the -importer suffix
  46. } else {
  47. wp_redirect( self_admin_url("plugins.php?activate=true&plugin_status=$status&paged=$page&s=$s") ); // overrides the ?error=true one above
  48. }
  49. exit;
  50. break;
  51. case 'activate-selected':
  52. if ( ! current_user_can('activate_plugins') )
  53. wp_die(__('You do not have sufficient permissions to activate plugins for this site.'));
  54. check_admin_referer('bulk-plugins');
  55. $plugins = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array();
  56. // Only activate plugins which are not already active.
  57. if ( is_network_admin() ) {
  58. foreach ( $plugins as $i => $plugin ) {
  59. if ( is_plugin_active_for_network( $plugin ) )
  60. unset( $plugins[ $i ] );
  61. }
  62. } else {
  63. foreach ( $plugins as $i => $plugin ) {
  64. if ( is_plugin_active( $plugin ) || is_network_only_plugin( $plugin ) )
  65. unset( $plugins[ $i ] );
  66. }
  67. }
  68. if ( empty($plugins) ) {
  69. wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
  70. exit;
  71. }
  72. activate_plugins($plugins, self_admin_url('plugins.php?error=true'), is_network_admin() );
  73. if ( ! is_network_admin() ) {
  74. $recent = (array) get_option('recently_activated' );
  75. foreach ( $plugins as $plugin )
  76. unset( $recent[ $plugin ] );
  77. update_option( 'recently_activated', $recent );
  78. }
  79. wp_redirect( self_admin_url("plugins.php?activate-multi=true&plugin_status=$status&paged=$page&s=$s") );
  80. exit;
  81. break;
  82. case 'update-selected' :
  83. check_admin_referer( 'bulk-plugins' );
  84. if ( isset( $_GET['plugins'] ) )
  85. $plugins = explode( ',', $_GET['plugins'] );
  86. elseif ( isset( $_POST['checked'] ) )
  87. $plugins = (array) $_POST['checked'];
  88. else
  89. $plugins = array();
  90. $title = __( 'Update Plugins' );
  91. $parent_file = 'plugins.php';
  92. require_once(ABSPATH . 'wp-admin/admin-header.php');
  93. echo '<div class="wrap">';
  94. echo '<h2>' . esc_html( $title ) . '</h2>';
  95. $url = self_admin_url('update.php?action=update-selected&amp;plugins=' . urlencode( join(',', $plugins) ));
  96. $url = wp_nonce_url($url, 'bulk-update-plugins');
  97. echo "<iframe src='$url' style='width: 100%; height:100%; min-height:850px;'></iframe>";
  98. echo '</div>';
  99. require_once(ABSPATH . 'wp-admin/admin-footer.php');
  100. exit;
  101. break;
  102. case 'error_scrape':
  103. if ( ! current_user_can('activate_plugins') )
  104. wp_die(__('You do not have sufficient permissions to activate plugins for this site.'));
  105. check_admin_referer('plugin-activation-error_' . $plugin);
  106. $valid = validate_plugin($plugin);
  107. if ( is_wp_error($valid) )
  108. wp_die($valid);
  109. if ( ! WP_DEBUG ) {
  110. 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 );
  111. }
  112. @ini_set('display_errors', true); //Ensure that Fatal errors are displayed.
  113. // Go back to "sandbox" scope so we get the same errors as before
  114. function plugin_sandbox_scrape( $plugin ) {
  115. include( WP_PLUGIN_DIR . '/' . $plugin );
  116. }
  117. plugin_sandbox_scrape( $plugin );
  118. /** This action is documented in wp-admin/includes/plugins.php */
  119. do_action( "activate_{$plugin}" );
  120. exit;
  121. break;
  122. case 'deactivate':
  123. if ( ! current_user_can('activate_plugins') )
  124. wp_die(__('You do not have sufficient permissions to deactivate plugins for this site.'));
  125. check_admin_referer('deactivate-plugin_' . $plugin);
  126. if ( ! is_network_admin() && is_plugin_active_for_network( $plugin ) ) {
  127. wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
  128. exit;
  129. }
  130. deactivate_plugins( $plugin, false, is_network_admin() );
  131. if ( ! is_network_admin() )
  132. update_option( 'recently_activated', array( $plugin => time() ) + (array) get_option( 'recently_activated' ) );
  133. if ( headers_sent() )
  134. echo "<meta http-equiv='refresh' content='" . esc_attr( "0;url=plugins.php?deactivate=true&plugin_status=$status&paged=$page&s=$s" ) . "' />";
  135. else
  136. wp_redirect( self_admin_url("plugins.php?deactivate=true&plugin_status=$status&paged=$page&s=$s") );
  137. exit;
  138. break;
  139. case 'deactivate-selected':
  140. if ( ! current_user_can('activate_plugins') )
  141. wp_die(__('You do not have sufficient permissions to deactivate plugins for this site.'));
  142. check_admin_referer('bulk-plugins');
  143. $plugins = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array();
  144. // Do not deactivate plugins which are already deactivated.
  145. if ( is_network_admin() ) {
  146. $plugins = array_filter( $plugins, 'is_plugin_active_for_network' );
  147. } else {
  148. $plugins = array_filter( $plugins, 'is_plugin_active' );
  149. $plugins = array_diff( $plugins, array_filter( $plugins, 'is_plugin_active_for_network' ) );
  150. }
  151. if ( empty($plugins) ) {
  152. wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
  153. exit;
  154. }
  155. deactivate_plugins( $plugins, false, is_network_admin() );
  156. if ( ! is_network_admin() ) {
  157. $deactivated = array();
  158. foreach ( $plugins as $plugin )
  159. $deactivated[ $plugin ] = time();
  160. update_option( 'recently_activated', $deactivated + (array) get_option( 'recently_activated' ) );
  161. }
  162. wp_redirect( self_admin_url("plugins.php?deactivate-multi=true&plugin_status=$status&paged=$page&s=$s") );
  163. exit;
  164. break;
  165. case 'delete-selected':
  166. if ( ! current_user_can('delete_plugins') )
  167. wp_die(__('You do not have sufficient permissions to delete plugins for this site.'));
  168. check_admin_referer('bulk-plugins');
  169. //$_POST = from the plugin form; $_GET = from the FTP details screen.
  170. $plugins = isset( $_REQUEST['checked'] ) ? (array) $_REQUEST['checked'] : array();
  171. if ( empty( $plugins ) ) {
  172. wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
  173. exit;
  174. }
  175. $plugins = array_filter($plugins, 'is_plugin_inactive'); // Do not allow to delete Activated plugins.
  176. if ( empty( $plugins ) ) {
  177. wp_redirect( self_admin_url( "plugins.php?error=true&main=true&plugin_status=$status&paged=$page&s=$s" ) );
  178. exit;
  179. }
  180. include(ABSPATH . 'wp-admin/update.php');
  181. $parent_file = 'plugins.php';
  182. if ( ! isset($_REQUEST['verify-delete']) ) {
  183. wp_enqueue_script('jquery');
  184. require_once(ABSPATH . 'wp-admin/admin-header.php');
  185. ?>
  186. <div class="wrap">
  187. <?php
  188. $files_to_delete = $plugin_info = array();
  189. $have_non_network_plugins = false;
  190. foreach ( (array) $plugins as $plugin ) {
  191. if ( '.' == dirname($plugin) ) {
  192. $files_to_delete[] = WP_PLUGIN_DIR . '/' . $plugin;
  193. if( $data = get_plugin_data(WP_PLUGIN_DIR . '/' . $plugin) ) {
  194. $plugin_info[ $plugin ] = $data;
  195. $plugin_info[ $plugin ]['is_uninstallable'] = is_uninstallable_plugin( $plugin );
  196. if ( ! $plugin_info[ $plugin ]['Network'] )
  197. $have_non_network_plugins = true;
  198. }
  199. } else {
  200. // Locate all the files in that folder
  201. $files = list_files( WP_PLUGIN_DIR . '/' . dirname($plugin) );
  202. if ( $files ) {
  203. $files_to_delete = array_merge($files_to_delete, $files);
  204. }
  205. // Get plugins list from that folder
  206. if ( $folder_plugins = get_plugins( '/' . dirname($plugin)) ) {
  207. foreach( $folder_plugins as $plugin_file => $data ) {
  208. $plugin_info[ $plugin_file ] = _get_plugin_data_markup_translate( $plugin_file, $data );
  209. $plugin_info[ $plugin_file ]['is_uninstallable'] = is_uninstallable_plugin( $plugin );
  210. if ( ! $plugin_info[ $plugin_file ]['Network'] )
  211. $have_non_network_plugins = true;
  212. }
  213. }
  214. }
  215. }
  216. $plugins_to_delete = count( $plugin_info );
  217. echo '<h2>' . _n( 'Delete Plugin', 'Delete Plugins', $plugins_to_delete ) . '</h2>';
  218. ?>
  219. <?php if ( $have_non_network_plugins && is_network_admin() ) : ?>
  220. <div class="error"><p><strong><?php _e( 'Caution:' ); ?></strong> <?php echo _n( 'This plugin may be active on other sites in the network.', 'These plugins may be active on other sites in the network.', $plugins_to_delete ); ?></p></div>
  221. <?php endif; ?>
  222. <p><?php echo _n( 'You are about to remove the following plugin:', 'You are about to remove the following plugins:', $plugins_to_delete ); ?></p>
  223. <ul class="ul-disc">
  224. <?php
  225. $data_to_delete = false;
  226. foreach ( $plugin_info as $plugin ) {
  227. if ( $plugin['is_uninstallable'] ) {
  228. /* translators: 1: plugin name, 2: plugin author */
  229. echo '<li>', sprintf( __( '<strong>%1$s</strong> by <em>%2$s</em> (will also <strong>delete its data</strong>)' ), esc_html($plugin['Name']), esc_html($plugin['AuthorName']) ), '</li>';
  230. $data_to_delete = true;
  231. } else {
  232. /* translators: 1: plugin name, 2: plugin author */
  233. echo '<li>', sprintf( __('<strong>%1$s</strong> by <em>%2$s</em>' ), esc_html($plugin['Name']), esc_html($plugin['AuthorName']) ), '</li>';
  234. }
  235. }
  236. ?>
  237. </ul>
  238. <p><?php
  239. if ( $data_to_delete )
  240. _e('Are you sure you wish to delete these files and data?');
  241. else
  242. _e('Are you sure you wish to delete these files?');
  243. ?></p>
  244. <form method="post" action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>" style="display:inline;">
  245. <input type="hidden" name="verify-delete" value="1" />
  246. <input type="hidden" name="action" value="delete-selected" />
  247. <?php
  248. foreach ( (array) $plugins as $plugin )
  249. echo '<input type="hidden" name="checked[]" value="' . esc_attr($plugin) . '" />';
  250. ?>
  251. <?php wp_nonce_field('bulk-plugins') ?>
  252. <?php submit_button( $data_to_delete ? __( 'Yes, Delete these files and data' ) : __( 'Yes, Delete these files' ), 'button', 'submit', false ); ?>
  253. </form>
  254. <form method="post" action="<?php echo esc_url(wp_get_referer()); ?>" style="display:inline;">
  255. <?php submit_button( __( 'No, Return me to the plugin list' ), 'button', 'submit', false ); ?>
  256. </form>
  257. <p><a href="#" onclick="jQuery('#files-list').toggle(); return false;"><?php _e('Click to view entire list of files which will be deleted'); ?></a></p>
  258. <div id="files-list" style="display:none;">
  259. <ul class="code">
  260. <?php
  261. foreach ( (array)$files_to_delete as $file )
  262. echo '<li>' . esc_html(str_replace(WP_PLUGIN_DIR, '', $file)) . '</li>';
  263. ?>
  264. </ul>
  265. </div>
  266. </div>
  267. <?php
  268. require_once(ABSPATH . 'wp-admin/admin-footer.php');
  269. exit;
  270. } //Endif verify-delete
  271. $delete_result = delete_plugins($plugins);
  272. set_transient('plugins_delete_result_' . $user_ID, $delete_result); //Store the result in a cache rather than a URL param due to object type & length
  273. wp_redirect( self_admin_url("plugins.php?deleted=true&plugin_status=$status&paged=$page&s=$s") );
  274. exit;
  275. break;
  276. case 'clear-recent-list':
  277. if ( ! is_network_admin() )
  278. update_option( 'recently_activated', array() );
  279. break;
  280. }
  281. }
  282. $wp_list_table->prepare_items();
  283. wp_enqueue_script('plugin-install');
  284. add_thickbox();
  285. add_screen_option( 'per_page', array('label' => _x( 'Plugins', 'plugins per page (screen options)' ), 'default' => 999 ) );
  286. get_current_screen()->add_help_tab( array(
  287. 'id' => 'overview',
  288. 'title' => __('Overview'),
  289. 'content' =>
  290. '<p>' . __('Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.') . '</p>' .
  291. '<p>' . sprintf(__('You can find additional plugins for your site by using the <a href="%1$s">Plugin Browser/Installer</a> functionality or by browsing the <a href="%2$s" target="_blank">WordPress Plugin Directory</a> directly and installing new plugins manually. To manually install a plugin you generally just need to upload the plugin file into your <code>/wp-content/plugins</code> directory. Once a plugin has been installed, you can activate it here.'), 'plugin-install.php', 'http://wordpress.org/plugins/') . '</p>'
  292. ) );
  293. get_current_screen()->add_help_tab( array(
  294. 'id' => 'compatibility-problems',
  295. 'title' => __('Troubleshooting'),
  296. 'content' =>
  297. '<p>' . __('Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin&#8217;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>' .
  298. '<p>' . sprintf( __('If something goes wrong with a plugin and you can&#8217;t use WordPress, delete or rename that file in the <code>%s</code> directory and it will be automatically deactivated.'), WP_PLUGIN_DIR) . '</p>'
  299. ) );
  300. get_current_screen()->set_help_sidebar(
  301. '<p><strong>' . __('For more information:') . '</strong></p>' .
  302. '<p>' . __('<a href="http://codex.wordpress.org/Managing_Plugins#Plugin_Management" target="_blank">Documentation on Managing Plugins</a>') . '</p>' .
  303. '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
  304. );
  305. $title = __('Plugins');
  306. $parent_file = 'plugins.php';
  307. require_once(ABSPATH . 'wp-admin/admin-header.php');
  308. $invalid = validate_active_plugins();
  309. if ( !empty($invalid) )
  310. foreach ( $invalid as $plugin_file => $error )
  311. echo '<div id="message" class="error"><p>' . sprintf(__('The plugin <code>%s</code> has been <strong>deactivated</strong> due to an error: %s'), esc_html($plugin_file), $error->get_error_message()) . '</p></div>';
  312. ?>
  313. <?php if ( isset($_GET['error']) ) :
  314. if ( isset( $_GET['main'] ) )
  315. $errmsg = __( 'You cannot delete a plugin while it is active on the main site.' );
  316. elseif ( isset($_GET['charsout']) )
  317. $errmsg = sprintf(__('The plugin generated %d characters of <strong>unexpected output</strong> during activation. If you notice &#8220;headers already sent&#8221; messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.'), $_GET['charsout']);
  318. else
  319. $errmsg = __('Plugin could not be activated because it triggered a <strong>fatal error</strong>.');
  320. ?>
  321. <div id="message" class="updated"><p><?php echo $errmsg; ?></p>
  322. <?php
  323. if ( !isset( $_GET['main'] ) && !isset($_GET['charsout']) && wp_verify_nonce($_GET['_error_nonce'], 'plugin-activation-error_' . $plugin) ) { ?>
  324. <iframe style="border:0" width="100%" height="70px" src="<?php echo 'plugins.php?action=error_scrape&amp;plugin=' . esc_attr($plugin) . '&amp;_wpnonce=' . esc_attr($_GET['_error_nonce']); ?>"></iframe>
  325. <?php
  326. }
  327. ?>
  328. </div>
  329. <?php elseif ( isset($_GET['deleted']) ) :
  330. $delete_result = get_transient( 'plugins_delete_result_' . $user_ID );
  331. // Delete it once we're done.
  332. delete_transient( 'plugins_delete_result_' . $user_ID );
  333. if ( is_wp_error($delete_result) ) : ?>
  334. <div id="message" class="updated"><p><?php printf( __('Plugin could not be deleted due to an error: %s'), $delete_result->get_error_message() ); ?></p></div>
  335. <?php else : ?>
  336. <div id="message" class="updated"><p><?php _e('The selected plugins have been <strong>deleted</strong>.'); ?></p></div>
  337. <?php endif; ?>
  338. <?php elseif ( isset($_GET['activate']) ) : ?>
  339. <div id="message" class="updated"><p><?php _e('Plugin <strong>activated</strong>.') ?></p></div>
  340. <?php elseif (isset($_GET['activate-multi'])) : ?>
  341. <div id="message" class="updated"><p><?php _e('Selected plugins <strong>activated</strong>.'); ?></p></div>
  342. <?php elseif ( isset($_GET['deactivate']) ) : ?>
  343. <div id="message" class="updated"><p><?php _e('Plugin <strong>deactivated</strong>.') ?></p></div>
  344. <?php elseif (isset($_GET['deactivate-multi'])) : ?>
  345. <div id="message" class="updated"><p><?php _e('Selected plugins <strong>deactivated</strong>.'); ?></p></div>
  346. <?php elseif ( 'update-selected' == $action ) : ?>
  347. <div id="message" class="updated"><p><?php _e('No out of date plugins were selected.'); ?></p></div>
  348. <?php endif; ?>
  349. <div class="wrap">
  350. <h2><?php echo esc_html( $title );
  351. if ( ( ! is_multisite() || is_network_admin() ) && current_user_can('install_plugins') ) { ?>
  352. <a href="<?php echo self_admin_url( 'plugin-install.php' ); ?>" class="add-new-h2"><?php echo esc_html_x('Add New', 'plugin'); ?></a>
  353. <?php }
  354. if ( $s )
  355. printf( '<span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', esc_html( $s ) ); ?>
  356. </h2>
  357. <?php
  358. /**
  359. * Fires before the plugins list table is rendered.
  360. *
  361. * This hook also fires before the plugins list table is rendered in the Network Admin.
  362. *
  363. * Please note: The 'active' portion of the hook name does not refer to whether the current
  364. * view is for active plugins, but rather all plugins actively-installed.
  365. *
  366. * @since 3.0.0
  367. *
  368. * @param array $plugins_all An array containing all installed plugins.
  369. */
  370. do_action( 'pre_current_active_plugins', $plugins['all'] );
  371. ?>
  372. <?php $wp_list_table->views(); ?>
  373. <form method="get" action="">
  374. <?php $wp_list_table->search_box( __( 'Search Installed Plugins' ), 'plugin' ); ?>
  375. </form>
  376. <form method="post" action="">
  377. <input type="hidden" name="plugin_status" value="<?php echo esc_attr($status) ?>" />
  378. <input type="hidden" name="paged" value="<?php echo esc_attr($page) ?>" />
  379. <?php $wp_list_table->display(); ?>
  380. </form>
  381. </div>
  382. <?php
  383. include(ABSPATH . 'wp-admin/admin-footer.php');