aboutsummaryrefslogtreecommitdiff
path: root/views/default/forms/photos
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2012-07-28 23:08:10 +0200
committerSem <sembrestels@riseup.net>2012-07-28 23:08:10 +0200
commit12a88208acec40e190b0729887e28c9d9add26c3 (patch)
tree3f141ee1ba6b8495280335b637e99bb376144139 /views/default/forms/photos
parent534c8b15a7c11035cf918e983c82efa3bea567a9 (diff)
downloadelgg-12a88208acec40e190b0729887e28c9d9add26c3.tar.gz
elgg-12a88208acec40e190b0729887e28c9d9add26c3.tar.bz2
Removed photo-tagging feature.
Diffstat (limited to 'views/default/forms/photos')
-rw-r--r--views/default/forms/photos/admin/settings/main.php2
-rw-r--r--views/default/forms/photos/image/tag.php33
2 files changed, 1 insertions, 34 deletions
diff --git a/views/default/forms/photos/admin/settings/main.php b/views/default/forms/photos/admin/settings/main.php
index c99b9d688..ab5e7e24a 100644
--- a/views/default/forms/photos/admin/settings/main.php
+++ b/views/default/forms/photos/admin/settings/main.php
@@ -5,7 +5,7 @@
$plugin = $vars['plugin'];
-$checkboxes = array('tagging', 'view_count', 'uploader', 'exif', 'download_link');
+$checkboxes = array('view_count', 'uploader', 'exif', 'download_link');
foreach ($checkboxes as $checkbox) {
echo '<div>';
$checked = $plugin->$checkbox ? 'checked' : false;
diff --git a/views/default/forms/photos/image/tag.php b/views/default/forms/photos/image/tag.php
deleted file mode 100644
index 31869be9e..000000000
--- a/views/default/forms/photos/image/tag.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-/**
- * Tag select form body
- *
- * @uses $vars['entity']
- *
- * @author Cash Costello
- * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2
- */
-
-echo '<div class="elgg-col elgg-col-4of5">';
-
-echo elgg_view('input/autocomplete', array(
- 'name' => 'username',
- 'match_on' => 'friends',
-));
-
-echo elgg_view('input/hidden', array(
- 'name' => 'guid',
- 'value' => $vars['entity']->getGUID(),
-));
-
-echo elgg_view('input/hidden', array(
- 'name' => 'coordinates',
-));
-
-echo '</div>';
-
-echo '<div class="elgg-col elgg-col-1of5 center">';
-echo elgg_view('input/submit', array(
- 'value' => elgg_echo('tidypics:actiontag'),
-));
-echo '</div>';