summaryrefslogtreecommitdiffstats
path: root/templates/show_plugins.inc.php
diff options
context:
space:
mode:
authorspocky <spocky@ampache>2007-10-24 21:15:58 +0000
committerspocky <spocky@ampache>2007-10-24 21:15:58 +0000
commite855988af2850d8d8105b56bc0ce9eae8b7d9dc0 (patch)
tree9e05a256144165aca01e6bfe9a02bd2d81dbdfb4 /templates/show_plugins.inc.php
parent06a5efcc717cd28ea69bd75f11063c51ee455b82 (diff)
downloadampache-e855988af2850d8d8105b56bc0ce9eae8b7d9dc0.tar.gz
ampache-e855988af2850d8d8105b56bc0ce9eae8b7d9dc0.tar.bz2
ampache-e855988af2850d8d8105b56bc0ce9eae8b7d9dc0.zip
renamed a few files (missing php extension)
updated most of the tables so that every column is independently customizable by css rules
Diffstat (limited to 'templates/show_plugins.inc.php')
-rw-r--r--templates/show_plugins.inc.php32
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 />