Make WordPress Core


Ignore:
Timestamp:
05/19/2009 01:27:34 AM (15 years ago)
Author:
azaozz
Message:

Some more styling for the plugins screen

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/plugins.php

    r11389 r11391  
    355355    if ( empty($plugins) ) {
    356356        echo '<tr>
    357             <td colspan="6">' . __('No plugins to show') . '</td>
     357            <td colspan="3">' . __('No plugins to show') . '</td>
    358358        </tr>';
    359359    }
     
    380380    <tr class='$class'>
    381381        <th scope='row' class='check-column'><input type='checkbox' name='checked[]' value='" . esc_attr($plugin_file) . "' /></th>
    382         <td class='plugin-title'><strong>{$plugin_data['Name']}</strong>";
     382        <td class='plugin-title'><strong>{$plugin_data['Name']}</strong></td>
     383        <td class='desc'><p>{$plugin_data['Description']}</p></td>
     384    </tr>\n";
     385
     386        do_action( 'after_plugin_row', $plugin_file, $plugin_data, $context );
     387        do_action( "after_plugin_row_$plugin_file", $plugin_file, $plugin_data, $context );
     388
     389        echo "
     390    <tr class='$class second'>
     391        <td></td>
     392        <td class='plugin-title'>";
    383393        $i = 0;
    384394        echo '<div class="row-actions-visible">';
     
    388398            echo "<span class='$action'>$link$sep</span>";
    389399        }
    390         echo '</div>';
    391         echo "</td>
    392         <td class='desc'><p>{$plugin_data['Description']}</p>";
     400        echo "</div></td>
     401        <td class='desc'>";
    393402        $plugin_meta = array();
    394403        if ( !empty($plugin_data['Version']) )
     
    405414        $plugin_meta = apply_filters('plugin_row_meta', $plugin_meta, $plugin_file, $plugin_data, $context);
    406415        echo implode(' | ', $plugin_meta);
    407         echo "</p>";
    408         echo '</td>
    409     </tr>';
    410         do_action( 'after_plugin_row', $plugin_file, $plugin_data, $context );
    411         do_action( "after_plugin_row_$plugin_file", $plugin_file, $plugin_data, $context );
     416        echo "</p></td>
     417    </tr>\n";
    412418    }
    413419?>
Note: See TracChangeset for help on using the changeset viewer.