<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; }
#msg dl a { font-weight: bold}
#msg dl a:link { color:#fc3; }
#msg dl a:active { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[16347] trunk/wp-admin/includes/class-wp-plugins-list-table.php:
Introduce WP_Plugins_List_table:single_row().</title>
</head>
<body>
<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/16347">16347</a></dd>
<dt>Author</dt> <dd>scribu</dd>
<dt>Date</dt> <dd>2010-11-13 16:30:20 +0000 (Sat, 13 Nov 2010)</dd>
</dl>
<h3>Log Message</h3>
<pre>Introduce WP_Plugins_List_table:single_row(). See <a href="http://trac.wordpress.org/ticket/15318">#15318</a></pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminincludesclasswppluginslisttablephp">trunk/wp-admin/includes/class-wp-plugins-list-table.php</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesclasswppluginslisttablephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/class-wp-plugins-list-table.php (16346 => 16347)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/class-wp-plugins-list-table.php        2010-11-13 16:25:56 UTC (rev 16346)
+++ trunk/wp-admin/includes/class-wp-plugins-list-table.php        2010-11-13 16:30:20 UTC (rev 16347)
</span><span class="lines">@@ -302,137 +302,145 @@
</span><span class="cx">         }
</span><span class="cx">
</span><span class="cx">         function display_rows() {
</span><ins>+                global $status;
+
+                $screen = get_current_screen();
+
+                if ( is_multisite() && !$screen->is_network && in_array( $status, array( 'mustuse', 'dropins' ) ) )
+                        return;
+
+                foreach ( $this->items as $plugin_file => $plugin_data )
+                        $this->single_row( $plugin_file, $plugin_data );
+        }
+
+        function single_row( $plugin_file, $plugin_data ) {
</ins><span class="cx">                 global $status, $page, $s;
</span><span class="cx">
</span><span class="cx">                 $context = $status;
</span><span class="cx">
</span><span class="cx">                 $screen = get_current_screen();
</span><span class="cx">
</span><del>-                if ( is_multisite() && !$screen->is_network && in_array( $context, array( 'mustuse', 'dropins' ) ) )
-                        return;
</del><ins>+                // preorder
+                $actions = array(
+                        'network_deactivate' => '', 'deactivate' => '',
+                        'network_only' => '', 'activate' => '',
+                        'network_activate' => '',
+                        'edit' => '',
+                        'delete' => '',
+                );
</ins><span class="cx">
</span><del>-                foreach ( $this->items as $plugin_file => $plugin_data ) {
-                        // preorder
-                        $actions = array(
-                                'network_deactivate' => '', 'deactivate' => '',
-                                'network_only' => '', 'activate' => '',
-                                'network_activate' => '',
-                                'edit' => '',
-                                'delete' => '',
-                        );
-
-                        if ( 'mustuse' == $context ) {
</del><ins>+                if ( 'mustuse' == $context ) {
+                        $is_active = true;
+                } elseif ( 'dropins' == $context ) {
+                        $dropins = _get_dropins();
+                        $plugin_name = $plugin_file;
+                        if ( $plugin_file != $plugin_data['Name'] )
+                                $plugin_name .= '<br/>' . $plugin_data['Name'];
+                        if ( true === ( $dropins[ $plugin_file ][1] ) ) { // Doesn't require a constant
</ins><span class="cx">                                 $is_active = true;
</span><del>-                        } elseif ( 'dropins' == $context ) {
-                                $dropins = _get_dropins();
-                                $plugin_name = $plugin_file;
-                                if ( $plugin_file != $plugin_data['Name'] )
-                                        $plugin_name .= '<br/>' . $plugin_data['Name'];
-                                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
-                                        $is_active = true;
-                                        $description = '<p><strong>' . $dropins[ $plugin_file ][0] . '</strong></p>';
-                                } else {
-                                        $is_active = false;
-                                        $description = '<p><strong>' . $dropins[ $plugin_file ][0] . ' <span class="attention">' . __('Inactive:') . '</span></strong> ' . sprintf( __( 'Requires <code>%s</code> in <code>wp-config.php</code>.' ), "define('" . $dropins[ $plugin_file ][1] . "', true);" ) . '</p>';
-                                }
-                                if ( $plugin_data['Description'] )
-                                        $description .= '<p>' . $plugin_data['Description'] . '</p>';
</del><ins>+                                $description = '<p><strong>' . $dropins[ $plugin_file ][0] . '</strong></p>';
+                        } elseif ( constant( $dropins[ $plugin_file ][1] ) ) { // Constant is true
+                                $is_active = true;
+                                $description = '<p><strong>' . $dropins[ $plugin_file ][0] . '</strong></p>';
</ins><span class="cx">                         } else {
</span><del>-                                $is_active_for_network = is_plugin_active_for_network($plugin_file);
-                                if ( $screen->is_network )
-                                        $is_active = $is_active_for_network;
-                                else
-                                        $is_active = is_plugin_active( $plugin_file );
</del><ins>+                                $is_active = false;
+                                $description = '<p><strong>' . $dropins[ $plugin_file ][0] . ' <span class="attention">' . __('Inactive:') . '</span></strong> ' . sprintf( __( 'Requires <code>%s</code> in <code>wp-config.php</code>.' ), "define('" . $dropins[ $plugin_file ][1] . "', true);" ) . '</p>';
+                        }
+                        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;
+                        else
+                                $is_active = is_plugin_active( $plugin_file );
</ins><span class="cx">
</span><del>-                                if ( $is_active_for_network && !is_super_admin() && !$screen->is_network )
-                                        continue;
</del><ins>+                        if ( $is_active_for_network && !is_super_admin() && !$screen->is_network )
+                                return;
</ins><span class="cx">
</span><del>-                                if ( $screen->is_network ) {
-                                        if ( $is_active_for_network ) {
-                                                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="' . __('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="' . __('Activate this plugin for all sites in this network') . '" class="edit">' . __('Network Activate') . '</a>';
-                                                if ( 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="' . __('Delete this plugin') . '" class="delete">' . __('Delete') . '</a>';
-                                        }
</del><ins>+                        if ( $screen->is_network ) {
+                                if ( $is_active_for_network ) {
+                                        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="' . __('Deactivate this plugin') . '">' . __('Network Deactivate') . '</a>';
</ins><span class="cx">                                 } else {
</span><del>-                                        if ( $is_active ) {
-                                                $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="' . __('Deactivate this plugin') . '">' . __('Deactivate') . '</a>';
-                                        } else {
-                                                if ( is_network_only_plugin( $plugin_file ) && !$screen->is_network )
-                                                        continue;
</del><ins>+                                        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="' . __('Activate this plugin for all sites in this network') . '" class="edit">' . __('Network Activate') . '</a>';
+                                        if ( 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="' . __('Delete this plugin') . '" class="delete">' . __('Delete') . '</a>';
+                                }
+                        } else {
+                                if ( $is_active ) {
+                                        $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="' . __('Deactivate this plugin') . '">' . __('Deactivate') . '</a>';
+                                } else {
+                                        if ( is_network_only_plugin( $plugin_file ) && !$screen->is_network )
+                                                return;
</ins><span class="cx">
</span><del>-                                                $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="' . __('Activate this plugin') . '" class="edit">' . __('Activate') . '</a>';
</del><ins>+                                        $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="' . __('Activate this plugin') . '" class="edit">' . __('Activate') . '</a>';
</ins><span class="cx">
</span><del>-                                                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="' . __('Delete this plugin') . '" class="delete">' . __('Delete') . '</a>';
-                                        } // end if $is_active
-                                 } // end if $screen->is_network
</del><ins>+                                        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="' . __('Delete this plugin') . '" class="delete">' . __('Delete') . '</a>';
+                                } // end if $is_active
+                         } // end if $screen->is_network
</ins><span class="cx">
</span><del>-                                if ( current_user_can('edit_plugins') && is_writable(WP_PLUGIN_DIR . '/' . $plugin_file) )
-                                        $actions['edit'] = '<a href="plugin-editor.php?file=' . $plugin_file . '" title="' . __('Open this file in the Plugin Editor') . '" class="edit">' . __('Edit') . '</a>';
-                        } // end if $context
</del><ins>+                        if ( current_user_can('edit_plugins') && is_writable(WP_PLUGIN_DIR . '/' . $plugin_file) )
+                                $actions['edit'] = '<a href="plugin-editor.php?file=' . $plugin_file . '" title="' . __('Open this file in the Plugin Editor') . '" class="edit">' . __('Edit') . '</a>';
+                } // end if $context
</ins><span class="cx">
</span><del>-                        $actions = apply_filters( 'plugin_action_links', array_filter( $actions ), $plugin_file, $plugin_data, $context );
-                        $actions = apply_filters( "plugin_action_links_$plugin_file", $actions, $plugin_file, $plugin_data, $context );
</del><ins>+                $actions = apply_filters( 'plugin_action_links', array_filter( $actions ), $plugin_file, $plugin_data, $context );
+                $actions = apply_filters( "plugin_action_links_$plugin_file", $actions, $plugin_file, $plugin_data, $context );
</ins><span class="cx">
</span><del>-                        $class = $is_active ? 'active' : 'inactive';
-                        $checkbox_id = md5($plugin_data['Name']) . "_checkbox";
-                        $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 ( 'dropins' != $status ) {
-                                $description = '<p>' . $plugin_data['Description'] . '</p>';
-                                $plugin_name = $plugin_data['Name'];
-                        }
</del><ins>+                $class = $is_active ? 'active' : 'inactive';
+                $checkbox_id = md5($plugin_data['Name']) . "_checkbox";
+                $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 ( 'dropins' != $status ) {
+                        $description = '<p>' . $plugin_data['Description'] . '</p>';
+                        $plugin_name = $plugin_data['Name'];
+                }
</ins><span class="cx">
</span><del>-                        $id = sanitize_title( $plugin_name );
</del><ins>+                $id = sanitize_title( $plugin_name );
</ins><span class="cx">
</span><del>-                        echo "
-                <tr id='$id' class='$class'>
-                        <th scope='row' class='check-column'>$checkbox</th>
-                        <td class='plugin-title'>
-                                <strong>$plugin_name</strong>
-                        ";
-                        
-                        echo $this->row_actions( $actions, true );
</del><span class="cx">
</span><del>-                        echo "
-                        </td>
-                        <td class='column-description desc'>
-                                <div class='plugin-description'>
-                                        $description
-                                </div>
-                                <div class='$class second plugin-version-author-uri'>
-                                        ";
</del><ins>+                echo "
+        <tr id='$id' class='$class'>
+                <th scope='row' class='check-column'>$checkbox</th>
+                <td class='plugin-title'>
+                        <strong>$plugin_name</strong>
+                ";
</ins><span class="cx">                 
</span><del>-                                        $plugin_meta = array();
-                                        if ( !empty( $plugin_data['Version'] ) )
-                                                $plugin_meta[] = sprintf( __( 'Version %s' ), $plugin_data['Version'] );
-                                        if ( !empty( $plugin_data['Author'] ) ) {
-                                                $author = $plugin_data['Author'];
-                                                if ( !empty( $plugin_data['AuthorURI'] ) )
-                                                        $author = '<a href="' . $plugin_data['AuthorURI'] . '" title="' . __( 'Visit author homepage' ) . '">' . $plugin_data['Author'] . '</a>';
-                                                $plugin_meta[] = sprintf( __( 'By %s' ), $author );
-                                        }
-                                        if ( ! empty( $plugin_data['PluginURI'] ) )
-                                                $plugin_meta[] = '<a href="' . $plugin_data['PluginURI'] . '" title="' . __( 'Visit plugin site' ) . '">' . __( 'Visit plugin site' ) . '</a>';
-                
-                                        $plugin_meta = apply_filters( 'plugin_row_meta', $plugin_meta, $plugin_file, $plugin_data, $status );
-                                        echo implode( ' | ', $plugin_meta );
</del><ins>+                echo $this->row_actions( $actions, true );
</ins><span class="cx">
</span><del>-                                        echo "
-                                </div>
-                        </td>
-                </tr>
</del><ins>+                echo "
+                </td>
+                <td class='column-description desc'>
+                        <div class='plugin-description'>
+                                $description
+                        </div>
+                        <div class='$class second plugin-version-author-uri'>
+                                ";
+        
+                                $plugin_meta = array();
+                                if ( !empty( $plugin_data['Version'] ) )
+                                        $plugin_meta[] = sprintf( __( 'Version %s' ), $plugin_data['Version'] );
+                                if ( !empty( $plugin_data['Author'] ) ) {
+                                        $author = $plugin_data['Author'];
+                                        if ( !empty( $plugin_data['AuthorURI'] ) )
+                                                $author = '<a href="' . $plugin_data['AuthorURI'] . '" title="' . __( 'Visit author homepage' ) . '">' . $plugin_data['Author'] . '</a>';
+                                        $plugin_meta[] = sprintf( __( 'By %s' ), $author );
+                                }
+                                if ( ! empty( $plugin_data['PluginURI'] ) )
+                                        $plugin_meta[] = '<a href="' . $plugin_data['PluginURI'] . '" title="' . __( 'Visit plugin site' ) . '">' . __( 'Visit plugin site' ) . '</a>';
+        
+                                $plugin_meta = apply_filters( 'plugin_row_meta', $plugin_meta, $plugin_file, $plugin_data, $status );
+                                echo implode( ' | ', $plugin_meta );
+
+                                echo "
+                        </div>
+                </td>
+        </tr>
</ins><span class="cx"> ";
</span><span class="cx">
</span><del>-                        do_action( 'after_plugin_row', $plugin_file, $plugin_data, $status );
-                        do_action( "after_plugin_row_$plugin_file", $plugin_file, $plugin_data, $status );
-                }
</del><ins>+                do_action( 'after_plugin_row', $plugin_file, $plugin_data, $status );
+                do_action( "after_plugin_row_$plugin_file", $plugin_file, $plugin_data, $status );
</ins><span class="cx">         }
</span><span class="cx"> }
</span><span class="cx">
</span></span></pre>
</div>
</div>
</body>
</html>