diff options
Diffstat (limited to 'templates/show_plugins.inc.php')
-rw-r--r-- | templates/show_plugins.inc.php | 32 |
1 files changed, 22 insertions, 10 deletions
diff --git a/templates/show_plugins.inc.php b/templates/show_plugins.inc.php index a87e3f9b..6bc5cf26 100644 --- a/templates/show_plugins.inc.php +++ b/templates/show_plugins.inc.php @@ -21,12 +21,18 @@ $web_path = Config::get('web_path'); ?> <!-- Plugin we've found --> -<table class="tabledata" cellspacing="0"> -<tr class="table-header"> - <th><?php echo _('Name'); ?></th> - <th><?php echo _('Description'); ?></th> - <th><?php echo _('Version'); ?></th> - <th><?php echo _('Action'); ?></th> +<table class="tabledata" cellpadding="0" cellspacing="0"> +<colgroup> + <col id="col_name" /> + <col id="col_description" /> + <col id="col_version" /> + <col id="col_action" /> +</colgroup> +<tr class="th-top"> + <th class="cel_name"><?php echo _('Name'); ?></th> + <th class="cel_description"><?php echo _('Description'); ?></th> + <th class="cel_version"><?php echo _('Version'); ?></th> + <th class="cel_action"><?php echo _('Action'); ?></th> </tr> <?php foreach ($plugins as $plugin_name) { @@ -41,16 +47,22 @@ foreach ($plugins as $plugin_name) { } ?> <tr class="<?php echo flip_class(); ?>"> - <td><?php echo scrub_out($plugin->_plugin->name); ?></td> - <td><?php echo scrub_out($plugin->_plugin->description); ?></td> - <td><?php echo scrub_out($plugin->_plugin->version); ?></td> - <td><?php echo $action; ?></td> + <td class="cel_name"><?php echo scrub_out($plugin->_plugin->name); ?></td> + <td class="cel_description"><?php echo scrub_out($plugin->_plugin->description); ?></td> + <td class="cel_version"><?php echo scrub_out($plugin->_plugin->version); ?></td> + <td class="cel_action"><?php echo $action; ?></td> </tr> <?php } if (!count($plugins)) { ?> <tr class="<?php echo flip_class(); ?>"> <td colspan="4"><span class="error"><?php echo _('No Records Found'); ?></span></td> </tr> <?php } ?> +<tr class="th-bottom"> + <th class="cel_name"><?php echo _('Name'); ?></th> + <th class="cel_description"><?php echo _('Description'); ?></th> + <th class="cel_version"><?php echo _('Version'); ?></th> + <th class="cel_action"><?php echo _('Action'); ?></th> +</tr> </table> <br /> |