aboutsummaryrefslogtreecommitdiff
path: root/views/default/object/image.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2009-06-18 01:27:35 +0000
committerCash Costello <cash.costello@gmail.com>2009-06-18 01:27:35 +0000
commit5b8a7460d026d91f5c2411673f3b02be2b0e724d (patch)
treedb4a89052e31c206ef2d872365829bdcc0c777e6 /views/default/object/image.php
parent6061b39ac74181e00b58bdede9095502e9e6bec9 (diff)
downloadelgg-5b8a7460d026d91f5c2411673f3b02be2b0e724d.tar.gz
elgg-5b8a7460d026d91f5c2411673f3b02be2b0e724d.tar.bz2
cleaned up the tagging code
Diffstat (limited to 'views/default/object/image.php')
-rw-r--r--views/default/object/image.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/views/default/object/image.php b/views/default/object/image.php
index b7e19d8c0..d86f3ca46 100644
--- a/views/default/object/image.php
+++ b/views/default/object/image.php
@@ -20,7 +20,6 @@
/////////////////////////////////////////////////////
// get photo tags from database
-$photo_tag_links = array();
$photo_tags_json = "\"\"";
$photo_tags = get_annotations($file_guid,'object','image','phototag');
@@ -31,12 +30,15 @@ if ($photo_tags) {
$phototag_text = $photo_tag->value;
+ $phototag_link = $vars['url'] . "word";
if ($photo_tag->type === 'user') {
$user = get_entity($photo_tag->value);
if ($user)
$phototag_text = $user->name;
else
$phototag_text = "unknown user";
+
+ $phototag_link = $vars['url'] . "user";
}
// hack to handle format of Pedro Prez's tags - ugh
@@ -46,8 +48,8 @@ if ($photo_tags) {
} else
$photo_tags_json .= '{' . $photo_tag->coords . ',"text":"' . $phototag_text . '","id":"' . $p->id . '"},';
- $photo_tag_links[] = array($p->id, $phototag_text); // gave up on associative array for now
- $photo_tag_texts[$p->id] = $phototag_text;
+ // prepare variable arrays for tagging view
+ $photo_tag_links[$p->id] = array($phototag_text, $phototag_link);
}
$photo_tags_json = rtrim($photo_tags_json,',');
$photo_tags_json .= ']';
@@ -203,7 +205,6 @@ if ($photo_tags) {
if (get_plugin_setting('tagging', 'tidypics') != "disabled") {
echo elgg_view('tidypics/tagging', array( 'photo_tags' => $photo_tags,
'links' => $photo_tag_links,
- 'text' => $photo_tag_texts,
'photo_tags_json' => $photo_tags_json,
'file_guid' => $file_guid,
'viewer' => $viewer,