aboutsummaryrefslogtreecommitdiff
path: root/views/default/admin/components/plugin.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-07 02:15:11 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-07 02:15:11 +0000
commitcb5ecaff25b858117a57ede78f353661a520c9d4 (patch)
tree205600b0f86ad858086250402bf5ca2a44b9367e /views/default/admin/components/plugin.php
parent31ad8156b107894e238f4f53ec174aa8a4c30aa4 (diff)
downloadelgg-cb5ecaff25b858117a57ede78f353661a520c9d4.tar.gz
elgg-cb5ecaff25b858117a57ede78f353661a520c9d4.tar.bz2
Added drag and drop reordering of plugins. Started pulling out admin area's js into elgg.admin JS object.
git-svn-id: http://code.elgg.org/elgg/trunk@8056 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/admin/components/plugin.php')
-rw-r--r--views/default/admin/components/plugin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/admin/components/plugin.php b/views/default/admin/components/plugin.php
index acbe42e84..229dd8c57 100644
--- a/views/default/admin/components/plugin.php
+++ b/views/default/admin/components/plugin.php
@@ -152,7 +152,7 @@ $license = elgg_view('output/text', array('value' => $plugin->manifest->getLicen
?>
-<div class="plugin_details <?php echo $active_class ?>">
+<div id="elgg-plugin-<?php echo $plugin->guid; ?>" class="elgg-state-draggable plugin_details <?php echo $active_class ?>">
<div class="admin_plugin_reorder">
<?php echo "$links"; ?>
</div><div class="clearfloat"></div>
@@ -166,7 +166,7 @@ if (elgg_view_exists($settings_view)) {
$settings_link = "<a class='plugin_settings small link' href='$link'>[" . elgg_echo('settings') . "]</a>";
}
?>
- <h3><?php echo $plugin->manifest->getName() . " $version $settings_link"; ?></h3>
+ <h3 class="elgg-head"><?php echo $plugin->manifest->getName() . " $version $settings_link"; ?></h3>
<div class="plugin_description"><?php echo $description; ?></div>
<p class="plugin_author"><?php echo $author . ' - ' . $website; ?></p>