<!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() &amp;&amp; !$screen-&gt;is_network &amp;&amp; in_array( $status, array( 'mustuse', 'dropins' ) ) )
+                        return;
+
+                foreach ( $this-&gt;items as $plugin_file =&gt; $plugin_data )
+                        $this-&gt;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() &amp;&amp; !$screen-&gt;is_network &amp;&amp; in_array( $context, array( 'mustuse', 'dropins' ) ) )
-                        return;
</del><ins>+                // preorder
+                $actions = array(
+                        'network_deactivate' =&gt; '', 'deactivate' =&gt; '',
+                        'network_only' =&gt; '', 'activate' =&gt; '',
+                        'network_activate' =&gt; '',
+                        'edit' =&gt; '',
+                        'delete' =&gt; '',
+                );
</ins><span class="cx"> 
</span><del>-                foreach ( $this-&gt;items as $plugin_file =&gt; $plugin_data ) {
-                        // preorder
-                        $actions = array(
-                                'network_deactivate' =&gt; '', 'deactivate' =&gt; '',
-                                'network_only' =&gt; '', 'activate' =&gt; '',
-                                'network_activate' =&gt; '',
-                                'edit' =&gt; '',
-                                'delete' =&gt; '',
-                        );
-
-                        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 .= '&lt;br/&gt;' . $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 .= '&lt;br/&gt;' . $plugin_data['Name'];
-                                if ( true === ( $dropins[ $plugin_file ][1] ) ) { // Doesn't require a constant
-                                        $is_active = true;
-                                        $description = '&lt;p&gt;&lt;strong&gt;' . $dropins[ $plugin_file ][0] . '&lt;/strong&gt;&lt;/p&gt;';
-                                } elseif ( constant( $dropins[ $plugin_file ][1] ) ) { // Constant is true
-                                        $is_active = true;
-                                        $description = '&lt;p&gt;&lt;strong&gt;' . $dropins[ $plugin_file ][0] . '&lt;/strong&gt;&lt;/p&gt;';
-                                } else {
-                                        $is_active = false;
-                                        $description = '&lt;p&gt;&lt;strong&gt;' . $dropins[ $plugin_file ][0] . ' &lt;span class=&quot;attention&quot;&gt;' . __('Inactive:') . '&lt;/span&gt;&lt;/strong&gt; ' . sprintf( __( 'Requires &lt;code&gt;%s&lt;/code&gt; in &lt;code&gt;wp-config.php&lt;/code&gt;.' ), &quot;define('&quot; . $dropins[ $plugin_file ][1] . &quot;', true);&quot; ) . '&lt;/p&gt;';
-                                }
-                                if ( $plugin_data['Description'] )
-                                        $description .= '&lt;p&gt;' . $plugin_data['Description'] . '&lt;/p&gt;';
</del><ins>+                                $description = '&lt;p&gt;&lt;strong&gt;' . $dropins[ $plugin_file ][0] . '&lt;/strong&gt;&lt;/p&gt;';
+                        } elseif ( constant( $dropins[ $plugin_file ][1] ) ) { // Constant is true
+                                $is_active = true;
+                                $description = '&lt;p&gt;&lt;strong&gt;' . $dropins[ $plugin_file ][0] . '&lt;/strong&gt;&lt;/p&gt;';
</ins><span class="cx">                         } else {
</span><del>-                                $is_active_for_network = is_plugin_active_for_network($plugin_file);
-                                if ( $screen-&gt;is_network )
-                                        $is_active = $is_active_for_network;
-                                else
-                                        $is_active = is_plugin_active( $plugin_file );
</del><ins>+                                $is_active = false;
+                                $description = '&lt;p&gt;&lt;strong&gt;' . $dropins[ $plugin_file ][0] . ' &lt;span class=&quot;attention&quot;&gt;' . __('Inactive:') . '&lt;/span&gt;&lt;/strong&gt; ' . sprintf( __( 'Requires &lt;code&gt;%s&lt;/code&gt; in &lt;code&gt;wp-config.php&lt;/code&gt;.' ), &quot;define('&quot; . $dropins[ $plugin_file ][1] . &quot;', true);&quot; ) . '&lt;/p&gt;';
+                        }
+                        if ( $plugin_data['Description'] )
+                                $description .= '&lt;p&gt;' . $plugin_data['Description'] . '&lt;/p&gt;';
+                } else {
+                        $is_active_for_network = is_plugin_active_for_network($plugin_file);
+                        if ( $screen-&gt;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 &amp;&amp; !is_super_admin() &amp;&amp; !$screen-&gt;is_network )
-                                        continue;
</del><ins>+                        if ( $is_active_for_network &amp;&amp; !is_super_admin() &amp;&amp; !$screen-&gt;is_network )
+                                return;
</ins><span class="cx"> 
</span><del>-                                if ( $screen-&gt;is_network ) {
-                                        if ( $is_active_for_network ) {
-                                                if ( current_user_can( 'manage_network_plugins' ) )
-                                                        $actions['network_deactivate'] = '&lt;a href=&quot;' . wp_nonce_url('plugins.php?action=deactivate&amp;amp;networkwide=1&amp;amp;plugin=' . $plugin_file . '&amp;amp;plugin_status=' . $context . '&amp;amp;paged=' . $page . '&amp;amp;s=' . $s, 'deactivate-plugin_' . $plugin_file) . '&quot; title=&quot;' . __('Deactivate this plugin') . '&quot;&gt;' . __('Network Deactivate') . '&lt;/a&gt;';
-                                        } else {
-                                                if ( current_user_can( 'manage_network_plugins' ) )
-                                                        $actions['network_activate'] = '&lt;a href=&quot;' . wp_nonce_url('plugins.php?action=activate&amp;amp;networkwide=1&amp;amp;plugin=' . $plugin_file . '&amp;amp;plugin_status=' . $context . '&amp;amp;paged=' . $page . '&amp;amp;s=' . $s, 'activate-plugin_' . $plugin_file) . '&quot; title=&quot;' . __('Activate this plugin for all sites in this network') . '&quot; class=&quot;edit&quot;&gt;' . __('Network Activate') . '&lt;/a&gt;';
-                                                if ( current_user_can('delete_plugins') )
-                                                        $actions['delete'] = '&lt;a href=&quot;' . wp_nonce_url('plugins.php?action=delete-selected&amp;amp;checked[]=' . $plugin_file . '&amp;amp;plugin_status=' . $context . '&amp;amp;paged=' . $page . '&amp;amp;s=' . $s, 'bulk-plugins') . '&quot; title=&quot;' . __('Delete this plugin') . '&quot; class=&quot;delete&quot;&gt;' . __('Delete') . '&lt;/a&gt;';
-                                        }
</del><ins>+                        if ( $screen-&gt;is_network ) {
+                                if ( $is_active_for_network ) {
+                                        if ( current_user_can( 'manage_network_plugins' ) )
+                                                $actions['network_deactivate'] = '&lt;a href=&quot;' . wp_nonce_url('plugins.php?action=deactivate&amp;amp;networkwide=1&amp;amp;plugin=' . $plugin_file . '&amp;amp;plugin_status=' . $context . '&amp;amp;paged=' . $page . '&amp;amp;s=' . $s, 'deactivate-plugin_' . $plugin_file) . '&quot; title=&quot;' . __('Deactivate this plugin') . '&quot;&gt;' . __('Network Deactivate') . '&lt;/a&gt;';
</ins><span class="cx">                                 } else {
</span><del>-                                        if ( $is_active ) {
-                                                $actions['deactivate'] = '&lt;a href=&quot;' . wp_nonce_url('plugins.php?action=deactivate&amp;amp;plugin=' . $plugin_file . '&amp;amp;plugin_status=' . $context . '&amp;amp;paged=' . $page . '&amp;amp;s=' . $s, 'deactivate-plugin_' . $plugin_file) . '&quot; title=&quot;' . __('Deactivate this plugin') . '&quot;&gt;' . __('Deactivate') . '&lt;/a&gt;';
-                                        } else {
-                                                if ( is_network_only_plugin( $plugin_file ) &amp;&amp; !$screen-&gt;is_network )
-                                                        continue;
</del><ins>+                                        if ( current_user_can( 'manage_network_plugins' ) )
+                                                $actions['network_activate'] = '&lt;a href=&quot;' . wp_nonce_url('plugins.php?action=activate&amp;amp;networkwide=1&amp;amp;plugin=' . $plugin_file . '&amp;amp;plugin_status=' . $context . '&amp;amp;paged=' . $page . '&amp;amp;s=' . $s, 'activate-plugin_' . $plugin_file) . '&quot; title=&quot;' . __('Activate this plugin for all sites in this network') . '&quot; class=&quot;edit&quot;&gt;' . __('Network Activate') . '&lt;/a&gt;';
+                                        if ( current_user_can('delete_plugins') )
+                                                $actions['delete'] = '&lt;a href=&quot;' . wp_nonce_url('plugins.php?action=delete-selected&amp;amp;checked[]=' . $plugin_file . '&amp;amp;plugin_status=' . $context . '&amp;amp;paged=' . $page . '&amp;amp;s=' . $s, 'bulk-plugins') . '&quot; title=&quot;' . __('Delete this plugin') . '&quot; class=&quot;delete&quot;&gt;' . __('Delete') . '&lt;/a&gt;';
+                                }
+                        } else {
+                                if ( $is_active ) {
+                                        $actions['deactivate'] = '&lt;a href=&quot;' . wp_nonce_url('plugins.php?action=deactivate&amp;amp;plugin=' . $plugin_file . '&amp;amp;plugin_status=' . $context . '&amp;amp;paged=' . $page . '&amp;amp;s=' . $s, 'deactivate-plugin_' . $plugin_file) . '&quot; title=&quot;' . __('Deactivate this plugin') . '&quot;&gt;' . __('Deactivate') . '&lt;/a&gt;';
+                                } else {
+                                        if ( is_network_only_plugin( $plugin_file ) &amp;&amp; !$screen-&gt;is_network )
+                                                return;
</ins><span class="cx"> 
</span><del>-                                                $actions['activate'] = '&lt;a href=&quot;' . wp_nonce_url('plugins.php?action=activate&amp;amp;plugin=' . $plugin_file . '&amp;amp;plugin_status=' . $context . '&amp;amp;paged=' . $page . '&amp;amp;s=' . $s, 'activate-plugin_' . $plugin_file) . '&quot; title=&quot;' . __('Activate this plugin') . '&quot; class=&quot;edit&quot;&gt;' . __('Activate') . '&lt;/a&gt;';
</del><ins>+                                        $actions['activate'] = '&lt;a href=&quot;' . wp_nonce_url('plugins.php?action=activate&amp;amp;plugin=' . $plugin_file . '&amp;amp;plugin_status=' . $context . '&amp;amp;paged=' . $page . '&amp;amp;s=' . $s, 'activate-plugin_' . $plugin_file) . '&quot; title=&quot;' . __('Activate this plugin') . '&quot; class=&quot;edit&quot;&gt;' . __('Activate') . '&lt;/a&gt;';
</ins><span class="cx"> 
</span><del>-                                                if ( ! is_multisite() &amp;&amp; current_user_can('delete_plugins') )
-                                                        $actions['delete'] = '&lt;a href=&quot;' . wp_nonce_url('plugins.php?action=delete-selected&amp;amp;checked[]=' . $plugin_file . '&amp;amp;plugin_status=' . $context . '&amp;amp;paged=' . $page . '&amp;amp;s=' . $s, 'bulk-plugins') . '&quot; title=&quot;' . __('Delete this plugin') . '&quot; class=&quot;delete&quot;&gt;' . __('Delete') . '&lt;/a&gt;';
-                                        } // end if $is_active
-                                 } // end if $screen-&gt;is_network
</del><ins>+                                        if ( ! is_multisite() &amp;&amp; current_user_can('delete_plugins') )
+                                                $actions['delete'] = '&lt;a href=&quot;' . wp_nonce_url('plugins.php?action=delete-selected&amp;amp;checked[]=' . $plugin_file . '&amp;amp;plugin_status=' . $context . '&amp;amp;paged=' . $page . '&amp;amp;s=' . $s, 'bulk-plugins') . '&quot; title=&quot;' . __('Delete this plugin') . '&quot; class=&quot;delete&quot;&gt;' . __('Delete') . '&lt;/a&gt;';
+                                } // end if $is_active
+                         } // end if $screen-&gt;is_network
</ins><span class="cx"> 
</span><del>-                                if ( current_user_can('edit_plugins') &amp;&amp; is_writable(WP_PLUGIN_DIR . '/' . $plugin_file) )
-                                        $actions['edit'] = '&lt;a href=&quot;plugin-editor.php?file=' . $plugin_file . '&quot; title=&quot;' . __('Open this file in the Plugin Editor') . '&quot; class=&quot;edit&quot;&gt;' . __('Edit') . '&lt;/a&gt;';
-                        } // end if $context
</del><ins>+                        if ( current_user_can('edit_plugins') &amp;&amp; is_writable(WP_PLUGIN_DIR . '/' . $plugin_file) )
+                                $actions['edit'] = '&lt;a href=&quot;plugin-editor.php?file=' . $plugin_file . '&quot; title=&quot;' . __('Open this file in the Plugin Editor') . '&quot; class=&quot;edit&quot;&gt;' . __('Edit') . '&lt;/a&gt;';
+                } // 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( &quot;plugin_action_links_$plugin_file&quot;, $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( &quot;plugin_action_links_$plugin_file&quot;, $actions, $plugin_file, $plugin_data, $context );
</ins><span class="cx"> 
</span><del>-                        $class = $is_active ? 'active' : 'inactive';
-                        $checkbox_id = md5($plugin_data['Name']) . &quot;_checkbox&quot;;
-                        $checkbox = in_array( $status, array( 'mustuse', 'dropins' ) ) ? '' : &quot;&lt;input type='checkbox' name='checked[]' value='&quot; . esc_attr( $plugin_file ) . &quot;' id='&quot; . $checkbox_id . &quot;' /&gt;&lt;label class='screen-reader-text' for='&quot; . $checkbox_id . &quot;' &gt;&quot; . __('Select') . &quot; &quot; . $plugin_data['Name'] . &quot;&lt;/label&gt;&quot;;
-                        if ( 'dropins' != $status ) {
-                                $description = '&lt;p&gt;' . $plugin_data['Description'] . '&lt;/p&gt;';
-                                $plugin_name = $plugin_data['Name'];
-                        }
</del><ins>+                $class = $is_active ? 'active' : 'inactive';
+                $checkbox_id = md5($plugin_data['Name']) . &quot;_checkbox&quot;;
+                $checkbox = in_array( $status, array( 'mustuse', 'dropins' ) ) ? '' : &quot;&lt;input type='checkbox' name='checked[]' value='&quot; . esc_attr( $plugin_file ) . &quot;' id='&quot; . $checkbox_id . &quot;' /&gt;&lt;label class='screen-reader-text' for='&quot; . $checkbox_id . &quot;' &gt;&quot; . __('Select') . &quot; &quot; . $plugin_data['Name'] . &quot;&lt;/label&gt;&quot;;
+                if ( 'dropins' != $status ) {
+                        $description = '&lt;p&gt;' . $plugin_data['Description'] . '&lt;/p&gt;';
+                        $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 &quot;
-                &lt;tr id='$id' class='$class'&gt;
-                        &lt;th scope='row' class='check-column'&gt;$checkbox&lt;/th&gt;
-                        &lt;td class='plugin-title'&gt;
-                                &lt;strong&gt;$plugin_name&lt;/strong&gt;
-                        &quot;;
-                        
-                        echo $this-&gt;row_actions( $actions, true );
</del><span class="cx"> 
</span><del>-                        echo &quot;
-                        &lt;/td&gt;
-                        &lt;td class='column-description desc'&gt;
-                                &lt;div class='plugin-description'&gt;
-                                        $description
-                                &lt;/div&gt;
-                                &lt;div class='$class second plugin-version-author-uri'&gt;
-                                        &quot;;
</del><ins>+                echo &quot;
+        &lt;tr id='$id' class='$class'&gt;
+                &lt;th scope='row' class='check-column'&gt;$checkbox&lt;/th&gt;
+                &lt;td class='plugin-title'&gt;
+                        &lt;strong&gt;$plugin_name&lt;/strong&gt;
+                &quot;;
</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 = '&lt;a href=&quot;' . $plugin_data['AuthorURI'] . '&quot; title=&quot;' . __( 'Visit author homepage' ) . '&quot;&gt;' . $plugin_data['Author'] . '&lt;/a&gt;';
-                                                $plugin_meta[] = sprintf( __( 'By %s' ), $author );
-                                        }
-                                        if ( ! empty( $plugin_data['PluginURI'] ) )
-                                                $plugin_meta[] = '&lt;a href=&quot;' . $plugin_data['PluginURI'] . '&quot; title=&quot;' . __( 'Visit plugin site' ) . '&quot;&gt;' . __( 'Visit plugin site' ) . '&lt;/a&gt;';
-                
-                                        $plugin_meta = apply_filters( 'plugin_row_meta', $plugin_meta, $plugin_file, $plugin_data, $status );
-                                        echo implode( ' | ', $plugin_meta );
</del><ins>+                echo $this-&gt;row_actions( $actions, true );
</ins><span class="cx"> 
</span><del>-                                        echo &quot;
-                                &lt;/div&gt;
-                        &lt;/td&gt;
-                &lt;/tr&gt;
</del><ins>+                echo &quot;
+                &lt;/td&gt;
+                &lt;td class='column-description desc'&gt;
+                        &lt;div class='plugin-description'&gt;
+                                $description
+                        &lt;/div&gt;
+                        &lt;div class='$class second plugin-version-author-uri'&gt;
+                                &quot;;
+        
+                                $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 = '&lt;a href=&quot;' . $plugin_data['AuthorURI'] . '&quot; title=&quot;' . __( 'Visit author homepage' ) . '&quot;&gt;' . $plugin_data['Author'] . '&lt;/a&gt;';
+                                        $plugin_meta[] = sprintf( __( 'By %s' ), $author );
+                                }
+                                if ( ! empty( $plugin_data['PluginURI'] ) )
+                                        $plugin_meta[] = '&lt;a href=&quot;' . $plugin_data['PluginURI'] . '&quot; title=&quot;' . __( 'Visit plugin site' ) . '&quot;&gt;' . __( 'Visit plugin site' ) . '&lt;/a&gt;';
+        
+                                $plugin_meta = apply_filters( 'plugin_row_meta', $plugin_meta, $plugin_file, $plugin_data, $status );
+                                echo implode( ' | ', $plugin_meta );
+
+                                echo &quot;
+                        &lt;/div&gt;
+                &lt;/td&gt;
+        &lt;/tr&gt;
</ins><span class="cx"> &quot;;
</span><span class="cx"> 
</span><del>-                        do_action( 'after_plugin_row', $plugin_file, $plugin_data, $status );
-                        do_action( &quot;after_plugin_row_$plugin_file&quot;, $plugin_file, $plugin_data, $status );
-                }
</del><ins>+                do_action( 'after_plugin_row', $plugin_file, $plugin_data, $status );
+                do_action( &quot;after_plugin_row_$plugin_file&quot;, $plugin_file, $plugin_data, $status );
</ins><span class="cx">         }
</span><span class="cx"> }
</span><span class="cx"> 
</span></span></pre>
</div>
</div>

</body>
</html>