diff options
-rw-r--r-- | actions/addtag.php | 7 | ||||
-rw-r--r-- | graphics/icons/river_icon_tag.gif | bin | 0 -> 184 bytes | |||
-rw-r--r-- | languages/en.php | 7 | ||||
-rw-r--r-- | views/default/river/object/image/tag.php | 20 | ||||
-rw-r--r-- | views/default/tidypics/css.php | 4 |
5 files changed, 34 insertions, 4 deletions
diff --git a/actions/addtag.php b/actions/addtag.php index fb299dee6..fa2b4b3c6 100644 --- a/actions/addtag.php +++ b/actions/addtag.php @@ -74,8 +74,13 @@ if ($image->annotate('phototag', serialize($tag), $access_id, $owner_id)) {
// if tag is a user id, add relationship for searching (find all images with user x)
if ($relationships_type === 'user') {
- if (!check_entity_relationship($user_id, 'phototag', $image_guid))
+ if (!check_entity_relationship($user_id, 'phototag', $image_guid)) {
add_entity_relationship($user_id, 'phototag', $image_guid);
+
+ // also add this to the river
+ if (function_exists('add_to_river'))
+ add_to_river('river/object/image/tag', 'tag', $image_guid, $user_id); // subject is image
+ }
}
system_message(elgg_echo("tidypics:phototagging:success"));
diff --git a/graphics/icons/river_icon_tag.gif b/graphics/icons/river_icon_tag.gif Binary files differnew file mode 100644 index 000000000..510696147 --- /dev/null +++ b/graphics/icons/river_icon_tag.gif diff --git a/languages/en.php b/languages/en.php index 6890ddfd8..de8a22db2 100644 --- a/languages/en.php +++ b/languages/en.php @@ -127,9 +127,10 @@ // river
//images
- 'image:river:created' => "%s added the image %s to album %s",
- 'image:river:item' => "an image",
- 'image:river:annotate' => "a comment on the image",
+ 'image:river:created' => "%s added the photo %s to album %s",
+ 'image:river:item' => "an photo",
+ 'image:river:annotate' => "a comment on the photo",
+ 'image:river:tagged' => "was tagged in the photo",
//albums
'album:river:created' => "%s created a new photo album",
diff --git a/views/default/river/object/image/tag.php b/views/default/river/object/image/tag.php new file mode 100644 index 000000000..cfe01e444 --- /dev/null +++ b/views/default/river/object/image/tag.php @@ -0,0 +1,20 @@ +<?php
+
+ $image = get_entity($vars['item']->subject_guid);
+ $person_tagged = get_entity($vars['item']->object_guid);
+ if($image->title) {
+ $title = $image->title;
+ } else {
+ $title = "untitled";
+ }
+
+
+
+ $image_url = "<a href=\"{$image->getURL()}\">{$title}</a>";
+ $person_url = "<a href=\"{$person_tagged->getURL()}\">{$person_tagged->name}</a>";
+
+ $string = $person_url . ' ' . elgg_echo('image:river:tagged') . ' ' . $image_url;
+
+ echo $string;
+
+?>
\ No newline at end of file diff --git a/views/default/tidypics/css.php b/views/default/tidypics/css.php index a68ff22f0..66d42c22a 100644 --- a/views/default/tidypics/css.php +++ b/views/default/tidypics/css.php @@ -175,6 +175,10 @@ padding:0 0 5px; background: url(<?php echo $vars['url']; ?>_graphics/river_icons/river_icon_comment.gif) no-repeat left -1px; } +.river_user_tag { + background: url(<?php echo $vars['url']; ?>mod/tidypics/graphics/icons/river_icon_tag.gif) no-repeat left -1px; +}} + /* ----------- tagging ---------------- */ #tidypics_tag_instructions { background:#BBDAF7; |