From e428dbd281c22e65e8cc00d1095ce4564c9dd1bf Mon Sep 17 00:00:00 2001 From: cash Date: Sat, 4 Feb 2012 14:26:32 -0500 Subject: Fixes #4310 adds missing blog notification function --- mod/blog/languages/en.php | 1 + mod/blog/start.php | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) (limited to 'mod/blog') diff --git a/mod/blog/languages/en.php b/mod/blog/languages/en.php index 8a21c1f8d..42606bf8e 100644 --- a/mod/blog/languages/en.php +++ b/mod/blog/languages/en.php @@ -58,6 +58,7 @@ $english = array( // notifications 'blog:newpost' => 'A new blog post', + 'blog:via' => "published a blog post", // widget 'blog:widget:description' => 'Display your latest blog posts', diff --git a/mod/blog/start.php b/mod/blog/start.php index a8553b4b8..eb4e11086 100644 --- a/mod/blog/start.php +++ b/mod/blog/start.php @@ -226,6 +226,34 @@ function blog_entity_menu_setup($hook, $type, $return, $params) { return $return; } +/** + * Set the notification message body + * + * @param string $hook Hook name + * @param string $type Hook type + * @param string $message The current message body + * @param array $params Parameters about the blog posted + * @return string + */ +function blog_notify_message($hook, $type, $message, $params) { + $entity = $params['entity']; + $to_entity = $params['to_entity']; + $method = $params['method']; + if (elgg_instanceof($entity, 'object', 'blog')) { + $descr = $entity->description; + $title = $entity->title; + if ($method == 'email') { + $owner = $entity->getOwnerEntity(); + return $owner->name . ' ' . elgg_echo('blog:via') . ': ' . $title . "\n\n" . $descr . "\n\n" . $entity->getURL(); + } + if ($method == 'web') { + $owner = $entity->getOwnerEntity(); + return $owner->name . ' ' . elgg_echo('blog:via') . ': ' . $title . "\n\n" . $descr . "\n\n" . $entity->getURL(); + } + } + return null; +} + /** * Register blogs with ECML. */ -- cgit v1.2.3