aboutsummaryrefslogtreecommitdiff
path: root/views/default/tidypics/image_menu.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/tidypics/image_menu.php')
-rw-r--r--views/default/tidypics/image_menu.php39
1 files changed, 0 insertions, 39 deletions
diff --git a/views/default/tidypics/image_menu.php b/views/default/tidypics/image_menu.php
deleted file mode 100644
index b4597a99f..000000000
--- a/views/default/tidypics/image_menu.php
+++ /dev/null
@@ -1,39 +0,0 @@
-<?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'];
- $viewer = $vars['viewer'];
- $owner = $vars['owner'];
- $anytags = $vars['anytags'];
-
- if (get_plugin_setting('tagging', 'tidypics') != "disabled") {
- // only owner and friends of owner can tag
- if ($viewer && $viewer->guid == $owner->guid || user_is_friend($owner->guid, $viewer->guid)) {
-?>
-<li id="start_tagging"><a id="tidypics_tag_control" href="javascript:void(0)" onclick="startTagging()"><?= elgg_echo('tidypics:tagthisphoto') ?></a></li>
-<?php
- }
-
- // only owner can delete tags
- if ($anytags && $viewer && $viewer->guid == $owner->guid) {
-?>
-<li id="delete_tags"><a href="javascript:void(0)" onclick="deleteTags()"><?= elgg_echo('tidypics:deletetag') ?></a></li>
-<?php
- }
- }
-
- if (get_plugin_setting('download_link', 'tidypics') != "disabled") {
-?>
-<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