summaryrefslogtreecommitdiffstats
path: root/templates/show_plugins.inc.php
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2013-01-26 03:00:32 -0500
committerPaul Arthur <paul.arthur@flowerysong.com>2013-01-26 03:38:46 -0500
commitef4d3660605efc7f1328d4533b0f4bfb6c1107e2 (patch)
treee4377fb129a899e65aaaf421f8c97098aecaedd5 /templates/show_plugins.inc.php
parent8a750c3e875d590d351c3042570a134fcdf03e5d (diff)
downloadampache-ef4d3660605efc7f1328d4533b0f4bfb6c1107e2.tar.gz
ampache-ef4d3660605efc7f1328d4533b0f4bfb6c1107e2.tar.bz2
ampache-ef4d3660605efc7f1328d4533b0f4bfb6c1107e2.zip
Cosmetics: death to tabs
The refactoring I've been doing has reminded me of my strong preference for spaces, and I feel inclined to impose my will on the tree.
Diffstat (limited to 'templates/show_plugins.inc.php')
-rw-r--r--templates/show_plugins.inc.php46
1 files changed, 23 insertions, 23 deletions
diff --git a/templates/show_plugins.inc.php b/templates/show_plugins.inc.php
index 96d3f3ad..bf583371 100644
--- a/templates/show_plugins.inc.php
+++ b/templates/show_plugins.inc.php
@@ -1,5 +1,5 @@
<?php
-/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
+/* vim:set softtabstop=4 shiftwidth=4 expandtab: */
/**
*
* LICENSE: GNU General Public License, version 2 (GPLv2)
@@ -31,16 +31,16 @@ $web_path = Config::get('web_path');
<col id="col_action" />
</colgroup>
<tr class="th-top">
- <th class="cel_name"><?php echo T_('Name'); ?></th>
- <th class="cel_description"><?php echo T_('Description'); ?></th>
- <th class="cel_version"><?php echo T_('Version'); ?></th>
- <th class="cel_iversion"><?php echo T_('Installed Version'); ?></th>
- <th class="cel_action"><?php echo T_('Action'); ?></th>
+ <th class="cel_name"><?php echo T_('Name'); ?></th>
+ <th class="cel_description"><?php echo T_('Description'); ?></th>
+ <th class="cel_version"><?php echo T_('Version'); ?></th>
+ <th class="cel_iversion"><?php echo T_('Installed Version'); ?></th>
+ <th class="cel_action"><?php echo T_('Action'); ?></th>
</tr>
<?php
foreach ($plugins as $plugin_name) {
- $plugin = new Plugin($plugin_name);
- $installed_version = Plugin::get_plugin_version($plugin->_plugin->name);
+ $plugin = new Plugin($plugin_name);
+ $installed_version = Plugin::get_plugin_version($plugin->_plugin->name);
if (! $installed_version) {
$action = "<a href=\"" . $web_path . "/admin/modules.php?action=install_plugin&amp;plugin=" . scrub_out($plugin_name) . "\">" .
T_('Activate') . "</a>";
@@ -48,30 +48,30 @@ foreach ($plugins as $plugin_name) {
else {
$action = "<a href=\"" . $web_path . "/admin/modules.php?action=confirm_uninstall_plugin&amp;plugin=" . scrub_out($plugin_name) . "\">" .
T_('Deactivate') . "</a>";
- if ($installed_version < $plugin->_plugin->version) {
- $action .= '&nbsp;&nbsp;<a href="' . $web_path .
- '/admin/modules.php?action=upgrade_plugin&amp;plugin=' .
- scrub_out($plugin_name) . '">' . T_('Upgrade') . '</a>';
- }
+ if ($installed_version < $plugin->_plugin->version) {
+ $action .= '&nbsp;&nbsp;<a href="' . $web_path .
+ '/admin/modules.php?action=upgrade_plugin&amp;plugin=' .
+ scrub_out($plugin_name) . '">' . T_('Upgrade') . '</a>';
+ }
}
?>
<tr class="<?php echo UI::flip_class(); ?>">
- <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_iversion"><?php echo scrub_out($installed_version); ?></td>
- <td class="cel_action"><?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_iversion"><?php echo scrub_out($installed_version); ?></td>
+ <td class="cel_action"><?php echo $action; ?></td>
</tr>
<?php } if (!count($plugins)) { ?>
<tr class="<?php echo UI::flip_class(); ?>">
- <td colspan="4"><span class="error"><?php echo T_('No Records Found'); ?></span></td>
+ <td colspan="4"><span class="error"><?php echo T_('No Records Found'); ?></span></td>
</tr>
<?php } ?>
<tr class="th-bottom">
- <th class="cel_name"><?php echo T_('Name'); ?></th>
- <th class="cel_description"><?php echo T_('Description'); ?></th>
- <th class="cel_version"><?php echo T_('Version'); ?></th>
- <th class="cel_action"><?php echo T_('Action'); ?></th>
+ <th class="cel_name"><?php echo T_('Name'); ?></th>
+ <th class="cel_description"><?php echo T_('Description'); ?></th>
+ <th class="cel_version"><?php echo T_('Version'); ?></th>
+ <th class="cel_action"><?php echo T_('Action'); ?></th>
</tr>
</table>
<br />