Make WordPress Core

Ticket #5625: 5625.r8539.diff

File 5625.r8539.diff, 15.9 KB (added by santosj, 16 years ago)

Implements Strider's suggestions with support for uninstall.php and only display uninstall when deactivated

  • wp-admin/includes/plugin.php

     
    157157        return $wp_plugins;
    158158}
    159159
    160 function is_plugin_active($plugin){
     160/**
     161 * Check whether the plugin is active by checking the active_plugins list.
     162 *
     163 * @since 2.5.0
     164 *
     165 * @param string $plugin Base plugin path from plugins directory.
     166 * @return bool True, if in the active plugins list. False, not in the list.
     167 */
     168function is_plugin_active($plugin) {
    161169        return in_array($plugin, get_option('active_plugins'));
    162170}
    163171
     
    328336        return 0;
    329337}
    330338
     339/**
     340 * Whether the plugin can be uninstalled.
     341 *
     342 * @since {@internal Version Unknown}}
     343 *
     344 * @param string $plugin Plugin path to check.
     345 * @return bool Whether plugin can be uninstalled.
     346 */
     347function is_uninstallable_plugin($plugin) {
     348        $file = plugin_basename($plugin);
     349
     350        $uninstallable_plugins = (array) get_option('uninstall_plugins');
     351        if ( isset( $uninstallable_plugins[$file] ) || file_exists( WP_PLUGIN_DIR . '/' . dirname($file) . '/uninstall.php' ) )
     352                return true;
     353
     354        return false;
     355}
     356
     357/**
     358 * Uninstall a single plugin.
     359 *
     360 * Calls the uninstall hook, if it is available.
     361 *
     362 * @param string $plugin Relative plugin path from Plugin Directory.
     363 */
     364function uninstall_plugin($plugin) {
     365        $file = plugin_basename($plugin);
     366
     367        if ( is_plugin_active($file) )
     368                return false;
     369       
     370        $uninstallable_plugins = (array) get_option('uninstall_plugins');
     371        if ( file_exists( WP_PLUGIN_DIR . '/' . dirname($file) . '/uninstall.php' ) ) {
     372                if ( isset( $uninstallable_plugins[$file] ) ) {
     373                        unset($uninstallable_plugins[$file]);
     374                        set_option('uninstall_plugins', $uninstallable_plugins);
     375                }
     376                unset($uninstallable_plugins);
     377
     378                define('WP_UNINSTALL_PLUGIN', $file);
     379                include WP_PLUGIN_DIR . '/' . dirname($file) . '/uninstall.php';
     380
     381                return true;
     382        }
     383
     384        if ( isset( $uninstallable_plugins[$file] ) ) {
     385                $callable = $uninstallable_plugins[$file];
     386                unset($uninstallable_plugins[$file]);
     387                set_option('uninstall_plugins', $uninstallable_plugins);
     388                unset($uninstallable_plugins);
     389
     390                include WP_PLUGIN_DIR . '/' . $file;
     391
     392                add_action( 'uninstall_' . $file, $callable );
     393                do_action( 'uninstall_' . $file );
     394
     395                deactivate_plugins($file, true);
     396        }
     397}
     398
     399/**
     400 * Uninstall multiple plugins.
     401 *
     402 * @since {@internal Version Unknown}}
     403 *
     404 * @param array $plugins
     405 * @return bool Whether uninstall process is completed.
     406 */
     407function uninstall_plugins($plugins) {
     408        if ( !is_array($plugins) )
     409                $plugins = array($plugins);
     410
     411        foreach ( (array) $plugins as $plugin )
     412                uninstall_plugin($plugin);
     413
     414        return true;
     415}
     416
    331417//
    332418// Menu
    333419//
     
    616702        return true;
    617703}
    618704
    619 ?>
     705?>
     706 No newline at end of file
  • wp-admin/plugins.php

     
    22require_once('admin.php');
    33
    44$action = '';
    5 foreach( array('activate-selected', 'deactivate-selected', 'delete-selected', 'clear-recent-list') as $action_key ) {
     5foreach( array('uninstall-selected', 'activate-selected', 'deactivate-selected', 'delete-selected', 'clear-recent-list') as $action_key ) {
    66        if( isset($_POST[$action_key]) ) {
    77                $action = $action_key;
    88                break;
     
    4444                        wp_redirect('plugins.php?activate-multi=true');
    4545                        exit;
    4646                        break;
     47                case 'uninstall':
     48                        check_admin_referer('uninstall-plugin_' . $plugin);
     49                        uninstall_plugin($plugin);
     50                        wp_redirect('plugins.php?uninstall=true');
     51                        exit;
     52                        break;
     53                case 'uninstall-selected':
     54                        check_admin_referer('bulk-manage-plugins');
     55                        uninstall_plugins($_POST['checked']);
     56                        wp_redirect('plugins.php?uninstall-multi=true');
     57                        exit;
     58                        break;
    4759                case 'error_scrape':
    4860                        check_admin_referer('plugin-activation-error_' . $plugin);
    4961                        $valid = validate_plugin($plugin);
     
    194206        <div id="message" class="updated fade"><p><?php _e('Plugin <strong>deactivated</strong>.') ?></p></div>
    195207<?php elseif (isset($_GET['deactivate-multi'])) : ?>
    196208        <div id="message" class="updated fade"><p><?php _e('Selected plugins <strong>deactivated</strong>.'); ?></p></div>
     209<?php elseif ( isset($_GET['uninstall']) ) : ?>
     210        <div id="message" class="updated fade"><p><?php _e('Plugin <strong>uninstalled</strong>.') ?></p></div>
     211<?php elseif ( isset($_GET['uninstall-multi']) ) : ?>
     212        <div id="message" class="updated fade"><p><?php _e('Selected plugins <strong>uninstalled</strong>.') ?></p></div>
    197213<?php endif; ?>
    198214
    199215<div class="wrap">
     
    292308                if ( current_user_can('edit_plugins') && is_writable(WP_PLUGIN_DIR . '/' . $plugin_file) )
    293309                        $action_links[] = '<a href="plugin-editor.php?file=' . $plugin_file . '" title="' . __('Open this file in the Plugin Editor') . '" class="edit">' . __('Edit') . '</a>';
    294310
     311                if( 'active' != $context && is_uninstallable_plugin($plugin_file) )
     312                        $action_links[] = '<a href="' . wp_nonce_url('plugins.php?action=uninstall&amp;plugin=' . $plugin_file, 'uninstall-plugin_' . $plugin_file) . '" title="' . __('Uninstall this plugin') . '" class="uninstall">' . __('Uninstall') . '</a>';
     313
    295314                $action_links = apply_filters('plugin_action_links', $action_links, $plugin_file, $plugin_data, $context);
    296315
    297316                echo "
     
    340359<div class="tablenav">
    341360        <div class="alignleft">
    342361                <input type="submit" name="activate-selected" value="<?php _e('Activate') ?>" class="button-secondary" />
     362                <input type="submit" name="uninstall-selected" value="<?php _e('Uninstall') ?>" class="button-secondary" />
    343363<?php if( current_user_can('delete_plugins') ) : ?>
    344364                <input type="submit" name="delete-selected" value="<?php _e('Delete') ?>" class="button-secondary" />
    345365<?php endif; ?>
     
    359379<div class="tablenav">
    360380        <div class="alignleft">
    361381                <input type="submit" name="activate-selected" value="<?php _e('Activate') ?>" class="button-secondary" />
     382                <input type="submit" name="uninstall-selected" value="<?php _e('Uninstall') ?>" class="button-secondary" />
    362383<?php if( current_user_can('delete_plugins') ) : ?>
    363384                <input type="submit" name="delete-selected" value="<?php _e('Delete') ?>" class="button-secondary" />
    364385<?php endif; ?>
  • wp-includes/plugin.php

     
    2020 */
    2121
    2222/**
    23  * add_filter() - Hooks a function or method to a specific filter action.
     23 * Hooks a function or method to a specific filter action.
    2424 *
    2525 * Filters are the hooks that WordPress launches to modify text of various types
    2626 * before adding it to the database or sending it to the browser screen. Plugins
     
    6969}
    7070
    7171/**
    72  * has_filter() - Check if any filter has been registered for a hook.
     72 * Check if any filter has been registered for a hook.
    7373 *
    7474 * @package WordPress
    7575 * @subpackage Plugin
     
    9999}
    100100
    101101/**
    102  * apply_filters() - Call the functions added to a filter hook.
     102 * Call the functions added to a filter hook.
    103103 *
    104104 * The callback functions attached to filter hook <tt>$tag</tt> are invoked by
    105105 * calling this function. This function can be used to create a new filter hook
     
    171171}
    172172
    173173/**
    174  * remove_filter() - Removes a function from a specified filter hook.
     174 * Removes a function from a specified filter hook.
    175175 *
    176176 * This function removes a function attached to a specified filter hook. This
    177177 * method can be used to remove default functions attached to a specific filter
    178178 * hook and possibly replace them with a substitute.
    179179 *
    180  * To remove a hook, the <tt>$function_to_remove</tt> and <tt>$priority</tt> arguments
    181  * must match when the hook was added. This goes for both filters and actions. No warning
     180 * To remove a hook, the $function_to_remove and $priority arguments must match
     181 * when the hook was added. This goes for both filters and actions. No warning
    182182 * will be given on removal failure.
    183183 *
    184184 * @package WordPress
     
    208208
    209209
    210210/**
    211  * current_filter() - Return the name of the current filter or action.
     211 * Return the name of the current filter or action.
    212212 *
    213213 * @package WordPress
    214214 * @subpackage Plugin
     
    223223
    224224
    225225/**
    226  * add_action() - Hooks a function on to a specific action.
     226 * Hooks a function on to a specific action.
    227227 *
    228228 * Actions are the hooks that the WordPress core launches at specific points
    229229 * during execution, or when specific events occur. Plugins can specify that
     
    247247
    248248
    249249/**
    250  * do_action() - Execute functions hooked on a specific action hook.
     250 * Execute functions hooked on a specific action hook.
    251251 *
    252252 * This function invokes all functions attached to action hook <tt>$tag</tt>.
    253253 * It is possible to create new action hooks by simply calling this function,
     
    316316}
    317317
    318318/**
    319  * did_action() - Return the number times an action is fired.
     319 * Return the number times an action is fired.
    320320 *
    321321 * @package WordPress
    322322 * @subpackage Plugin
     
    336336}
    337337
    338338/**
    339  * do_action_ref_array() - Execute functions hooked on a specific action hook, specifying arguments in an array.
     339 * Execute functions hooked on a specific action hook, specifying arguments in an array.
    340340 *
    341341 * @see do_action() This function is identical, but the arguments passed to
    342342 * the functions hooked to <tt>$tag</tt> are supplied using an array.
     
    391391}
    392392
    393393/**
    394  * has_action() - Check if any action has been registered for a hook.
     394 * Check if any action has been registered for a hook.
    395395 *
    396396 * @package WordPress
    397397 * @subpackage Plugin
     
    407407}
    408408
    409409/**
    410  * remove_action() - Removes a function from a specified action hook.
     410 * Removes a function from a specified action hook.
    411411 *
    412412 * This function removes a function attached to a specified action hook. This
    413413 * method can be used to remove default functions attached to a specific filter
     
    432432//
    433433
    434434/**
    435  * plugin_basename() - Gets the basename of a plugin.
     435 * Gets the basename of a plugin.
    436436 *
    437437 * This method extracts the name of a plugin from its filename.
    438438 *
     
    456456}
    457457
    458458/**
    459  * register_activation_hook() - Hook a function on a plugin activation action hook.
     459 * Set the activation hook for a plugin.
    460460 *
    461461 * When a plugin is activated, the action 'activate_PLUGINNAME' hook is
    462462 * activated. In the name of this hook, PLUGINNAME is replaced with the name of
     
    474474 * @access private
    475475 *
    476476 * @param string $file The filename of the plugin including the path.
    477  * @param string $function the function hooked to the 'activate_PLUGIN' action.
     477 * @param callback $function the function hooked to the 'activate_PLUGIN' action.
    478478 */
    479479function register_activation_hook($file, $function) {
    480480        $file = plugin_basename($file);
     
    482482}
    483483
    484484/**
    485  * register_deactivation_hook() - Hook a function on a plugin deactivation action hook.
     485 * Set the deactivation hook for a plugin.
    486486 *
    487487 * When a plugin is deactivated, the action 'deactivate_PLUGINNAME' hook is
    488  * deactivated. In the name of this hook, PLUGINNAME is replaced with the name of
    489  * the plugin, including the optional subdirectory. For example, when the plugin
    490  * is located in <tt>wp-content/plugin/sampleplugin/sample.php</tt>, then the
    491  * name of this hook will become 'activate_sampleplugin/sample.php'.
     488 * deactivated. In the name of this hook, PLUGINNAME is replaced with the name
     489 * of the plugin, including the optional subdirectory. For example, when the
     490 * plugin is located in <tt>wp-content/plugin/sampleplugin/sample.php</tt>, then
     491 * the name of this hook will become 'activate_sampleplugin/sample.php'.
     492 *
    492493 * When the plugin consists of only one file and is (as by default) located at
    493494 * <tt>wp-content/plugin/sample.php</tt> the name of this hook will be
    494495 * 'activate_sample.php'.
     
    500501 * @access private
    501502 *
    502503 * @param string $file The filename of the plugin including the path.
    503  * @param string $function the function hooked to the 'activate_PLUGIN' action.
     504 * @param callback $function the function hooked to the 'activate_PLUGIN' action.
    504505 */
    505506function register_deactivation_hook($file, $function) {
    506507        $file = plugin_basename($file);
     
    508509}
    509510
    510511/**
    511  * _wp_call_all_hook() - Calls the 'all' hook, which will process the functions hooked into it.
     512 * Set the uninstallation hook for a plugin.
    512513 *
    513  * The 'all' hook passes all of the arguments or parameters that were used for the
    514  * hook, which this function was called for.
     514 * Registers the uninstall hook that will be called when the user clicks on the
     515 * uninstall link that calls for the plugin to uninstall itself. The link won't
     516 * be active unless the plugin hooks into the action.
    515517 *
    516  * This function is used internally for apply_filters(), do_action(), and do_action_ref_array()
    517  * and is not meant to be used from outside those functions. This function does not check for the
    518  * existence of the all hook, so it will fail unless the all hook exists prior to this function call.
     518 * The plugin should not run arbitrary code outside of functions, when
     519 * registering the uninstall hook. In order to run using the hook, the plugin
     520 * will have to be included, which means that any code laying outside of a
     521 * function will be run during the uninstall process. The plugin should not
     522 * hinder the uninstall process.
    519523 *
     524 * If the plugin can not be written without running code within the plugin, then
     525 * the plugin should create a file named 'uninstall.php' in the base plugin
     526 * folder. This file will be called, if it exists, during the uninstall process
     527 * bypassing the uninstall hook. The plugin, when using the 'uninstall.php'
     528 * should always check for the 'WP_UNINSTALLING_PLUGIN' constant, before
     529 * executing.
     530 *
     531 * @param string $file
     532 * @param callback $callback The callback to run when the hook is called.
     533 */
     534function register_uninstall_hook($file, $callback) {
     535        // The option should not be autoloaded, because it is not needed in most
     536        // cases. Emphasis should be put on using the 'uninstall.php' way of
     537        // uninstalling the plugin.
     538        $uninstallable_plugins = (array) get_option('uninstall_plugins');
     539        $uninstallable_plugins[$file] = $callback;
     540        set_option('uninstall_plugins', $uninstallable_plugins);
     541}
     542
     543/**
     544 * Calls the 'all' hook, which will process the functions hooked into it.
     545 *
     546 * The 'all' hook passes all of the arguments or parameters that were used for
     547 * the hook, which this function was called for.
     548 *
     549 * This function is used internally for apply_filters(), do_action(), and
     550 * do_action_ref_array() and is not meant to be used from outside those
     551 * functions. This function does not check for the existence of the all hook, so
     552 * it will fail unless the all hook exists prior to this function call.
     553 *
    520554 * @package WordPress
    521555 * @subpackage Plugin
    522556 * @since 2.5
     
    540574}
    541575
    542576/**
    543  * _wp_filter_build_unique_id() - Build Unique ID for storage and retrieval
     577 * Build Unique ID for storage and retrieval.
    544578 *
    545579 * The old way to serialize the callback caused issues and this function is the
    546580 * solution. It works by checking for objects and creating an a new property in
     
    549583 *
    550584 * It also allows for the removal of actions and filters for objects after they
    551585 * change class properties. It is possible to include the property $wp_filter_id
    552  * in your class and set it to "null" or a number to bypass the workaround. However
    553  * this will prevent you from adding new classes and any new classes will overwrite
    554  * the previous hook by the same class.
     586 * in your class and set it to "null" or a number to bypass the workaround.
     587 * However this will prevent you from adding new classes and any new classes
     588 * will overwrite the previous hook by the same class.
    555589 *
    556  * Functions and static method callbacks are just returned as strings and shouldn't
    557  * have any speed penalty.
     590 * Functions and static method callbacks are just returned as strings and
     591 * shouldn't have any speed penalty.
    558592 *
    559593 * @package WordPress
    560594 * @subpackage Plugin