]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/includes/class-wp-plugins-list-table.php
Wordpress 3.7
[autoinstalls/wordpress.git] / wp-admin / includes / class-wp-plugins-list-table.php
index b5ad6d48b6eefbd4095b9e837f0a090687b97e72..9e648498fe8653e2e29d79e33d2546cec86bd95a 100644 (file)
@@ -9,37 +9,29 @@
  */
 class WP_Plugins_List_Table extends WP_List_Table {
 
-       function WP_Plugins_List_Table() {
+       function __construct( $args = array() ) {
                global $status, $page;
 
-               $default_status = get_user_option( 'plugins_last_view' );
-               if ( empty( $default_status ) )
-                       $default_status = 'all';
-               $status = isset( $_REQUEST['plugin_status'] ) ? $_REQUEST['plugin_status'] : $default_status;
-               if ( !in_array( $status, array( 'all', 'active', 'inactive', 'recently_activated', 'upgrade', 'network', 'mustuse', 'dropins', 'search' ) ) )
-                       $status = 'all';
-               if ( $status != $default_status && 'search' != $status )
-                       update_user_meta( get_current_user_id(), 'plugins_last_view', $status );
-
-               $page = $this->get_pagenum();
-
-               parent::WP_List_Table( array(
+               parent::__construct( array(
                        'plural' => 'plugins',
+                       'screen' => isset( $args['screen'] ) ? $args['screen'] : null,
                ) );
+
+               $status = 'all';
+               if ( isset( $_REQUEST['plugin_status'] ) && in_array( $_REQUEST['plugin_status'], array( 'active', 'inactive', 'recently_activated', 'upgrade', 'mustuse', 'dropins', 'search' ) ) )
+                       $status = $_REQUEST['plugin_status'];
+
+               if ( isset($_REQUEST['s']) )
+                       $_SERVER['REQUEST_URI'] = add_query_arg('s', wp_unslash($_REQUEST['s']) );
+
+               $page = $this->get_pagenum();
        }
-       
+
        function get_table_classes() {
                return array( 'widefat', $this->_args['plural'] );
        }
 
        function ajax_user_can() {
-               if ( is_multisite() ) {
-                       $menu_perms = get_site_option( 'menu_items', array() );
-
-                       if ( empty( $menu_perms['plugins'] ) && ! is_super_admin() )
-                               return false;
-               }
-
                return current_user_can('activate_plugins');
        }
 
@@ -59,55 +51,55 @@ class WP_Plugins_List_Table extends WP_List_Table {
                        'dropins' => array()
                );
 
-               $screen = get_current_screen();
+               $screen = $this->screen;
 
-               if ( ! is_multisite() || ( $screen->is_network && current_user_can('manage_network_plugins') ) ) {
+               if ( ! is_multisite() || ( $screen->in_admin( 'network' ) && current_user_can( 'manage_network_plugins' ) ) ) {
                        if ( apply_filters( 'show_advanced_plugins', true, 'mustuse' ) )
                                $plugins['mustuse'] = get_mu_plugins();
                        if ( apply_filters( 'show_advanced_plugins', true, 'dropins' ) )
                                $plugins['dropins'] = get_dropins();
 
-                       $current = get_site_transient( 'update_plugins' );
-                       foreach ( (array) $plugins['all'] as $plugin_file => $plugin_data ) {
-                               if ( isset( $current->response[ $plugin_file ] ) )
-                                       $plugins['upgrade'][ $plugin_file ] = $plugin_data;
+                       if ( current_user_can( 'update_plugins' ) ) {
+                               $current = get_site_transient( 'update_plugins' );
+                               foreach ( (array) $plugins['all'] as $plugin_file => $plugin_data ) {
+                                       if ( isset( $current->response[ $plugin_file ] ) ) {
+                                               $plugins['all'][ $plugin_file ]['update'] = true;
+                                               $plugins['upgrade'][ $plugin_file ] = $plugins['all'][ $plugin_file ];
+                                       }
+                               }
                        }
                }
 
-               set_transient( 'plugin_slugs', array_keys( $plugins['all'] ), 86400 );
+               set_transient( 'plugin_slugs', array_keys( $plugins['all'] ), DAY_IN_SECONDS );
 
-               $recently_activated = get_option( 'recently_activated', array() );
+               if ( ! $screen->in_admin( 'network' ) ) {
+                       $recently_activated = get_option( 'recently_activated', array() );
 
-               $one_week = 7*24*60*60;
-               foreach ( $recently_activated as $key => $time )
-                       if ( $time + $one_week < time() )
-                               unset( $recently_activated[$key] );
-               update_option( 'recently_activated', $recently_activated );
+                       foreach ( $recently_activated as $key => $time )
+                               if ( $time + WEEK_IN_SECONDS < time() )
+                                       unset( $recently_activated[$key] );
+                       update_option( 'recently_activated', $recently_activated );
+               }
 
                foreach ( (array) $plugins['all'] as $plugin_file => $plugin_data ) {
                        // Filter into individual sections
-                       if ( is_multisite() && is_network_only_plugin( $plugin_file ) && !$screen->is_network ) {
-                               unset( $plugins['all'][ $plugin_file] );
-                       } elseif ( is_plugin_active_for_network($plugin_file) && !$screen->is_network ) {
+                       if ( is_multisite() && ! $screen->in_admin( 'network' ) && is_network_only_plugin( $plugin_file ) ) {
+                               unset( $plugins['all'][ $plugin_file ] );
+                       } elseif ( ! $screen->in_admin( 'network' ) && is_plugin_active_for_network( $plugin_file ) ) {
                                unset( $plugins['all'][ $plugin_file ] );
-                       } elseif ( is_multisite() && is_network_only_plugin( $plugin_file ) && !current_user_can( 'manage_network_plugins' ) ) {
-                               $plugins['network'][ $plugin_file ] = $plugin_data;
-                       } elseif ( ( !$screen->is_network && is_plugin_active( $plugin_file ) )
-                               || ( $screen->is_network && is_plugin_active_for_network( $plugin_file ) ) ) {
+                       } elseif ( ( ! $screen->in_admin( 'network' ) && is_plugin_active( $plugin_file ) )
+                               || ( $screen->in_admin( 'network' ) && is_plugin_active_for_network( $plugin_file ) ) ) {
                                $plugins['active'][ $plugin_file ] = $plugin_data;
                        } else {
-                               if ( !$screen->is_network && isset( $recently_activated[ $plugin_file ] ) ) // Was the plugin recently activated?
+                               if ( ! $screen->in_admin( 'network' ) && isset( $recently_activated[ $plugin_file ] ) ) // Was the plugin recently activated?
                                        $plugins['recently_activated'][ $plugin_file ] = $plugin_data;
                                $plugins['inactive'][ $plugin_file ] = $plugin_data;
                        }
                }
 
-               if ( !current_user_can( 'update_plugins' ) )
-                       $plugins['upgrade'] = array();
-
                if ( $s ) {
                        $status = 'search';
-                       $plugins['search'] = array_filter( $plugins['all'], array( &$this, '_search_callback' ) );
+                       $plugins['search'] = array_filter( $plugins['all'], array( $this, '_search_callback' ) );
                }
 
                $totals = array();
@@ -129,10 +121,10 @@ class WP_Plugins_List_Table extends WP_List_Table {
                        $orderby = ucfirst( $orderby );
                        $order = strtoupper( $order );
 
-                       uasort( $this->items, array( &$this, '_order_callback' ) );
+                       uasort( $this->items, array( $this, '_order_callback' ) );
                }
 
-               $plugins_per_page = $this->get_items_per_page( str_replace( '-', '_', $screen->id . '_per_page' ) );
+               $plugins_per_page = $this->get_items_per_page( str_replace( '-', '_', $screen->id . '_per_page' ), 999 );
 
                $start = ( $page - 1 ) * $plugins_per_page;
 
@@ -148,7 +140,7 @@ class WP_Plugins_List_Table extends WP_List_Table {
        function _search_callback( $plugin ) {
                static $term;
                if ( is_null( $term ) )
-                       $term = stripslashes( $_REQUEST['s'] );
+                       $term = wp_unslash( $_REQUEST['s'] );
 
                foreach ( $plugin as $value )
                        if ( stripos( $value, $term ) !== false )
@@ -216,9 +208,6 @@ class WP_Plugins_List_Table extends WP_List_Table {
                                case 'inactive':
                                        $text = _n( 'Inactive <span class="count">(%s)</span>', 'Inactive <span class="count">(%s)</span>', $count );
                                        break;
-                               case 'network':
-                                       $text = _n( 'Network <span class="count">(%s)</span>', 'Network <span class="count">(%s)</span>', $count );
-                                       break;
                                case 'mustuse':
                                        $text = _n( 'Must-Use <span class="count">(%s)</span>', 'Must-Use <span class="count">(%s)</span>', $count );
                                        break;
@@ -247,17 +236,13 @@ class WP_Plugins_List_Table extends WP_List_Table {
 
                $actions = array();
 
-               $screen = get_current_screen();
-
-               if ( 'active' != $status ) {
-                       $action = $screen->is_network ? 'network-activate-selected' : 'activate-selected';
-                       $actions[ $action ] = __( 'Activate' );
-               }
+               if ( 'active' != $status )
+                       $actions['activate-selected'] = $this->screen->in_admin( 'network' ) ? __( 'Network Activate' ) : __( 'Activate' );
 
                if ( 'inactive' != $status && 'recent' != $status )
-                       $actions['deactivate-selected'] = __( 'Deactivate' );
+                       $actions['deactivate-selected'] = $this->screen->in_admin( 'network' ) ? __( 'Network Deactivate' ) : __( 'Deactivate' );
 
-               if ( !is_multisite() || $screen->is_network ) {
+               if ( !is_multisite() || $this->screen->in_admin( 'network' ) ) {
                        if ( current_user_can( 'update_plugins' ) )
                                $actions['update-selected'] = __( 'Update' );
                        if ( current_user_can( 'delete_plugins' ) && ( 'active' != $status ) )
@@ -267,13 +252,13 @@ class WP_Plugins_List_Table extends WP_List_Table {
                return $actions;
        }
 
-       function bulk_actions( $which ) {
+       function bulk_actions() {
                global $status;
 
                if ( in_array( $status, array( 'mustuse', 'dropins' ) ) )
                        return;
 
-               parent::bulk_actions( $which );
+               parent::bulk_actions();
        }
 
        function extra_tablenav( $which ) {
@@ -284,12 +269,12 @@ class WP_Plugins_List_Table extends WP_List_Table {
 
                echo '<div class="alignleft actions">';
 
-               if ( 'recently_activated' == $status )
-                       submit_button( __( 'Clear List' ), 'secondary', 'clear-recent-list', false );
+               if ( ! $this->screen->in_admin( 'network' ) && 'recently_activated' == $status )
+                       submit_button( __( 'Clear List' ), 'button', 'clear-recent-list', false );
                elseif ( 'top' == $which && 'mustuse' == $status )
-                       echo '<p>' . __( 'Files in the <code>/wp-content/mu-plugins</code> directory are executed automatically.' ) . '</p>';
+                       echo '<p>' . sprintf( __( 'Files in the <code>%s</code> directory are executed automatically.' ), str_replace( ABSPATH, '/', WPMU_PLUGIN_DIR ) ) . '</p>';
                elseif ( 'top' == $which && 'dropins' == $status )
-                       echo '<p>' . __( 'Drop-ins are advanced plugins in the <code>/wp-content</code> directory that replace WordPress functionality when present.' ) . '</p>';
+                       echo '<p>' . sprintf( __( 'Drop-ins are advanced plugins in the <code>%s</code> directory that replace WordPress functionality when present.' ), str_replace( ABSPATH, '', WP_CONTENT_DIR ) ) . '</p>';
 
                echo '</div>';
        }
@@ -304,27 +289,24 @@ class WP_Plugins_List_Table extends WP_List_Table {
        function display_rows() {
                global $status;
 
-               $screen = get_current_screen();
-
-               if ( is_multisite() && !$screen->is_network && in_array( $status, array( 'mustuse', 'dropins' ) ) )
+               if ( is_multisite() && ! $this->screen->in_admin( 'network' ) && in_array( $status, array( 'mustuse', 'dropins' ) ) )
                        return;
 
                foreach ( $this->items as $plugin_file => $plugin_data )
-                       $this->single_row( $plugin_file, $plugin_data );
+                       $this->single_row( array( $plugin_file, $plugin_data ) );
        }
 
-       function single_row( $plugin_file, $plugin_data ) {
-               global $status, $page, $s;
+       function single_row( $item ) {
+               global $status, $page, $s, $totals;
 
+               list( $plugin_file, $plugin_data ) = $item;
                $context = $status;
-
-               $screen = get_current_screen();
+               $screen = $this->screen;
 
                // preorder
                $actions = array(
-                       'network_deactivate' => '', 'deactivate' => '',
-                       'network_only' => '', 'activate' => '',
-                       'network_activate' => '',
+                       'deactivate' => '',
+                       'activate' => '',
                        'edit' => '',
                        'delete' => '',
                );
@@ -339,7 +321,7 @@ class WP_Plugins_List_Table extends WP_List_Table {
                        if ( true === ( $dropins[ $plugin_file ][1] ) ) { // Doesn't require a constant
                                $is_active = true;
                                $description = '<p><strong>' . $dropins[ $plugin_file ][0] . '</strong></p>';
-                       } elseif ( constant( $dropins[ $plugin_file ][1] ) ) { // Constant is true
+                       } elseif ( defined( $dropins[ $plugin_file ][1] ) && constant( $dropins[ $plugin_file ][1] ) ) { // Constant is true
                                $is_active = true;
                                $description = '<p><strong>' . $dropins[ $plugin_file ][0] . '</strong></p>';
                        } else {
@@ -349,22 +331,18 @@ class WP_Plugins_List_Table extends WP_List_Table {
                        if ( $plugin_data['Description'] )
                                $description .= '<p>' . $plugin_data['Description'] . '</p>';
                } else {
-                       $is_active_for_network = is_plugin_active_for_network($plugin_file);
-                       if ( $screen->is_network )
-                               $is_active = $is_active_for_network;
+                       if ( $screen->in_admin( 'network' ) )
+                               $is_active = is_plugin_active_for_network( $plugin_file );
                        else
                                $is_active = is_plugin_active( $plugin_file );
 
-                       if ( $is_active_for_network && !is_super_admin() && !$screen->is_network )
-                               return;
-
-                       if ( $screen->is_network ) {
-                               if ( $is_active_for_network ) {
+                       if ( $screen->in_admin( 'network' ) ) {
+                               if ( $is_active ) {
                                        if ( current_user_can( 'manage_network_plugins' ) )
-                                               $actions['network_deactivate'] = '<a href="' . wp_nonce_url('plugins.php?action=deactivate&amp;networkwide=1&amp;plugin=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'deactivate-plugin_' . $plugin_file) . '" title="' . esc_attr__('Deactivate this plugin') . '">' . __('Network Deactivate') . '</a>';
+                                               $actions['deactivate'] = '<a href="' . wp_nonce_url('plugins.php?action=deactivate&amp;plugin=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'deactivate-plugin_' . $plugin_file) . '" title="' . esc_attr__('Deactivate this plugin') . '">' . __('Network Deactivate') . '</a>';
                                } else {
                                        if ( current_user_can( 'manage_network_plugins' ) )
-                                               $actions['network_activate'] = '<a href="' . wp_nonce_url('plugins.php?action=activate&amp;networkwide=1&amp;plugin=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'activate-plugin_' . $plugin_file) . '" title="' . esc_attr__('Activate this plugin for all sites in this network') . '" class="edit">' . __('Network Activate') . '</a>';
+                                               $actions['activate'] = '<a href="' . wp_nonce_url('plugins.php?action=activate&amp;plugin=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'activate-plugin_' . $plugin_file) . '" title="' . esc_attr__('Activate this plugin for all sites in this network') . '" class="edit">' . __('Network Activate') . '</a>';
                                        if ( current_user_can( 'delete_plugins' ) && ! is_plugin_active( $plugin_file ) )
                                                $actions['delete'] = '<a href="' . wp_nonce_url('plugins.php?action=delete-selected&amp;checked[]=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'bulk-plugins') . '" title="' . esc_attr__('Delete this plugin') . '" class="delete">' . __('Delete') . '</a>';
                                }
@@ -377,25 +355,32 @@ class WP_Plugins_List_Table extends WP_List_Table {
                                        if ( ! is_multisite() && current_user_can('delete_plugins') )
                                                $actions['delete'] = '<a href="' . wp_nonce_url('plugins.php?action=delete-selected&amp;checked[]=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'bulk-plugins') . '" title="' . esc_attr__('Delete this plugin') . '" class="delete">' . __('Delete') . '</a>';
                                } // end if $is_active
-                        } // end if $screen->is_network
+                        } // end if $screen->in_admin( 'network' )
 
-                       if ( ( ! is_multisite() || $screen->is_network ) && current_user_can('edit_plugins') && is_writable(WP_PLUGIN_DIR . '/' . $plugin_file) )
+                       if ( ( ! is_multisite() || $screen->in_admin( 'network' ) ) && current_user_can('edit_plugins') && is_writable(WP_PLUGIN_DIR . '/' . $plugin_file) )
                                $actions['edit'] = '<a href="plugin-editor.php?file=' . $plugin_file . '" title="' . esc_attr__('Open this file in the Plugin Editor') . '" class="edit">' . __('Edit') . '</a>';
                } // end if $context
 
-               $prefix = $screen->is_network ? 'network_admin_' : '';
+               $prefix = $screen->in_admin( 'network' ) ? 'network_admin_' : '';
                $actions = apply_filters( $prefix . 'plugin_action_links', array_filter( $actions ), $plugin_file, $plugin_data, $context );
                $actions = apply_filters( $prefix . "plugin_action_links_$plugin_file", $actions, $plugin_file, $plugin_data, $context );
 
                $class = $is_active ? 'active' : 'inactive';
                $checkbox_id =  "checkbox_" . md5($plugin_data['Name']);
-               $checkbox = in_array( $status, array( 'mustuse', 'dropins' ) ) ? '' : "<input type='checkbox' name='checked[]' value='" . esc_attr( $plugin_file ) . "' id='" . $checkbox_id . "' /><label class='screen-reader-text' for='" . $checkbox_id . "' >" . __('Select') . " " . $plugin_data['Name'] . "</label>";
+               if ( in_array( $status, array( 'mustuse', 'dropins' ) ) ) {
+                       $checkbox = '';
+               } else {
+                       $checkbox = "<label class='screen-reader-text' for='" . $checkbox_id . "' >" . sprintf( __( 'Select %s' ), $plugin_data['Name'] ) . "</label>"
+                               . "<input type='checkbox' name='checked[]' value='" . esc_attr( $plugin_file ) . "' id='" . $checkbox_id . "' />";
+               }
                if ( 'dropins' != $context ) {
                        $description = '<p>' . ( $plugin_data['Description'] ? $plugin_data['Description'] : '&nbsp;' ) . '</p>';
                        $plugin_name = $plugin_data['Name'];
                }
 
                $id = sanitize_title( $plugin_name );
+               if ( ! empty( $totals['upgrade'] ) && ! empty( $plugin_data['update'] ) )
+                       $class .= ' update';
 
                echo "<tr id='$id' class='$class'>";
 
@@ -450,5 +435,3 @@ class WP_Plugins_List_Table extends WP_List_Table {
                do_action( "after_plugin_row_$plugin_file", $plugin_file, $plugin_data, $status );
        }
 }
-
-?>