diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-05-17 21:32:14 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-05-17 21:32:14 +0000 |
commit | 3b796bc5b923899cfec2f81ff9f811a02260a071 (patch) | |
tree | 8ab604f605d1ce7771538f2522f80ba3177eee92 /views/default/tidypics/image_menu.php | |
parent | d253222f742b74b8fd232fa39c81c6f39e9d6b9a (diff) | |
download | elgg-3b796bc5b923899cfec2f81ff9f811a02260a071.tar.gz elgg-3b796bc5b923899cfec2f81ff9f811a02260a071.tar.bz2 |
cleaning up some views
moved image controls to separate view so it easier for plugins to extend tidypics
Diffstat (limited to 'views/default/tidypics/image_menu.php')
-rw-r--r-- | views/default/tidypics/image_menu.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/views/default/tidypics/image_menu.php b/views/default/tidypics/image_menu.php new file mode 100644 index 000000000..269fcce8f --- /dev/null +++ b/views/default/tidypics/image_menu.php @@ -0,0 +1,22 @@ +<?php
+
+ /**************************************************************************
+ *
+ * Tidypics Image Menu
+ *
+ * This is the menu that appears below an image. Admins can override the
+ * menu with a different view to provide a look and feel that matches
+ * their themes. The view can be extended to provide additional controls.
+ *
+ **************************************************************************/
+
+ $file_guid = $vars['file_guid'];
+?>
+<li id="start_tagging"><a id="tag_control" href="javascript:void(0)" onclick="startTagging()"><?= elgg_echo('tidypics:tagthisphoto') ?></a></li>
+<?php
+ if (get_plugin_setting('download_link', 'tidypics') != "no") {
+?>
+<li id="download_image"><a href="<?php echo $vars['url']; ?>action/tidypics/download?file_guid=<?php echo $file_guid; ?>"><?php echo elgg_echo("image:download"); ?></a></li>
+<?php
+ }
+?>
\ No newline at end of file |