diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-05 22:13:53 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-05 22:13:53 +0000 |
commit | eb538def799eb54e1ce29996dfbc56f4c960e3f3 (patch) | |
tree | dbe37e09828060c9a423cb6591ca1242e844c804 /views/default/admin/plugins_opt | |
parent | 20f40a7216bb3ef7b9961a24bc329e91b93b8353 (diff) | |
download | elgg-eb538def799eb54e1ce29996dfbc56f4c960e3f3.tar.gz elgg-eb538def799eb54e1ce29996dfbc56f4c960e3f3.tar.bz2 |
Added category and name as valid plugin manifest keys/values.
git-svn-id: http://code.elgg.org/elgg/trunk@5629 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/admin/plugins_opt')
-rw-r--r-- | views/default/admin/plugins_opt/plugin.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/views/default/admin/plugins_opt/plugin.php b/views/default/admin/plugins_opt/plugin.php index 6184580d8..c03477bea 100644 --- a/views/default/admin/plugins_opt/plugin.php +++ b/views/default/admin/plugins_opt/plugin.php @@ -17,6 +17,8 @@ $details = $vars['details']; $active = $details['active']; $manifest = $details['manifest']; +$plugin_pretty_name = (isset($manifest['name'])) ? $manifest['name'] : $plugin; + // Check elgg version if available $version_check_valid = false; if ($manifest['elgg_version']) { @@ -64,7 +66,7 @@ $token = generate_action_token($ts); <?php } ?> </div> - <h3><?php echo $plugin; ?><?php if (elgg_view("settings/{$plugin}/edit")) { ?> <a class="plugin_settings small link" onclick="elgg_slide_toggle(this,'.plugin_details','.pluginsettings');">[<?php echo elgg_echo('settings'); ?>]</a><?php } ?></h3> + <h3><?php echo $plugin_pretty_name; ?><?php if (elgg_view("settings/{$plugin}/edit")) { ?> <a class="plugin_settings small link" onclick="elgg_slide_toggle(this,'.plugin_details','.pluginsettings');">[<?php echo elgg_echo('settings'); ?>]</a><?php } ?></h3> <?php if (elgg_view("settings/{$plugin}/edit")) { ?> <div class="pluginsettings hidden"> @@ -101,6 +103,7 @@ $token = generate_action_token($ts); ?> </div> <?php } ?> + <div><?php echo elgg_echo('admin:plugins:label:directory') . ": ". htmlspecialchars($plugin) ?></div> <div><?php echo elgg_echo('admin:plugins:label:version') . ": ". htmlspecialchars($manifest['version']) ?></div> <div><?php echo elgg_echo('admin:plugins:label:author') . ": ". htmlspecialchars($manifest['author']) ?></div> <div><?php echo elgg_echo('admin:plugins:label:copyright') . ": ". htmlspecialchars($manifest['copyright']) ?></div> |