diff options
author | Brett Profitt <brett.profitt@gmail.com> | 2011-08-25 13:49:32 -0700 |
---|---|---|
committer | Brett Profitt <brett.profitt@gmail.com> | 2011-08-25 13:49:32 -0700 |
commit | 82fc52493b5b249c723e0680212788b9436b8a74 (patch) | |
tree | 69f7ba8636b343b5992894b830b66063a8e36d8c /mod/likes/start.php | |
parent | 51f3c3ea8549d465fafa9c1817aa6f8cf334a404 (diff) | |
download | elgg-82fc52493b5b249c723e0680212788b9436b8a74.tar.gz elgg-82fc52493b5b249c723e0680212788b9436b8a74.tar.bz2 |
Fixes #3131. Added generic liking notification text.
Diffstat (limited to 'mod/likes/start.php')
-rw-r--r-- | mod/likes/start.php | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/mod/likes/start.php b/mod/likes/start.php index d45fb96b3..64be8b239 100644 --- a/mod/likes/start.php +++ b/mod/likes/start.php @@ -109,3 +109,76 @@ function likes_count($entity) { return $entity->countAnnotations('likes'); } } + +/** + * Notify $user that $liker liked his $entity. + * + * @param type $user + * @param type $liker + * @param type $entity + */ +function likes_notify_user(ElggUser $user, ElggUser $liker, ElggEntity $entity) { + + if (!$user instanceof ElggUser) { + return false; + } + + if (!$liker instanceof ElggUser) { + return false; + } + + if (!$entity instanceof ElggEntity) { + return false; + } + + // get language for entity type / subtype + // would be nice to have standardized languages.... + // we can have: + // item:object:<subtype> + // subtype + // subtype:subtype + $type = $entity->getType(); + $subtype = $entity->getSubtype(); + + $strings = array( + "item:$type:$subtype", + $subtype, + "$subtype:$subtype" + ); + + $type_str = elgg_echo('likes:content'); + foreach ($strings as $string) { + $tmp = elgg_echo($string); + if ($tmp != $string) { + $type_str = $tmp; + break; + } + } + + $title_str = $entity->title; + if (!$title_str) { + $title_str = elgg_get_excerpt($entity->description); + } + + $site = get_config('site'); + + $subject = elgg_echo('likes:notifications:subject', array( + $liker->name, + $title_str + )); + + $body = elgg_echo('likes:notifications:body', array( + $user->name, + $liker->name, + $title_str, + $site->name, + $entity->getURL(), + $liker->getURL() + )); + + notify_user($user->guid, + $liker->guid, + $subject, + $body + ); +}
\ No newline at end of file |