From 200d821e40d08c8acd1aa042b253d4d773765bc6 Mon Sep 17 00:00:00 2001 From: ben Date: Mon, 9 Feb 2009 18:16:06 +0000 Subject: A single notification is now sent out on forum topic creation. This also contains an update to $entity->countAnnotations, which no longer requires you to specify the annotation type. git-svn-id: https://code.elgg.org/elgg/trunk@2699 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/notification.php | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) (limited to 'engine/lib/notification.php') diff --git a/engine/lib/notification.php b/engine/lib/notification.php index b19725ea6..01d29990b 100644 --- a/engine/lib/notification.php +++ b/engine/lib/notification.php @@ -372,11 +372,12 @@ // Get config data global $CONFIG, $SESSION; - if (trigger_plugin_hook('object:notifications',$object_type,array( + $hookresult = trigger_plugin_hook('object:notifications',$object_type,array( 'event' => $event, 'object_type' => $object_type, 'object' => $object, - ),true)) return true; + ),false); + if ($hookresult === true) return true; // Have we registered notifications for this type of entity? $object_type = $object->getType(); if (empty($object_type)) $object_type = '__BLANK__'; @@ -398,20 +399,20 @@ $object->access_id == ACCESS_LOGGED_IN) && $object->access_id != ACCESS_PRIVATE && $user->guid != $SESSION['user']->guid) { - $tmp = (array)get_user_notification_settings($guid); - $methods = array(); - - // TODO: get the specific method to contact each user with - for now just go with their prefs - foreach($tmp as $k => $v) - if ($v) { - - $methodstring = trigger_plugin_hook('notify:entity:message',$entity->getType(),array( - 'entity' => $object, - 'to_entity' => $user, - 'method' => $v - ),$string); - notify_user($user->guid,$object->container_guid,$descr,$methodstring,NULL,array($v)); - } + $tmp = (array)get_user_notification_settings($guid); + $methods = array(); + + // TODO: get the specific method to contact each user with - for now just go with their prefs + foreach($tmp as $k => $v) + if ($v) { + + $methodstring = trigger_plugin_hook('notify:entity:message',$entity->getType(),array( + 'entity' => $object, + 'to_entity' => $user, + 'method' => $v + ),$string); + notify_user($user->guid,$object->container_guid,$descr,$methodstring,NULL,array($v)); + } } } } @@ -425,6 +426,6 @@ // Register a startup event register_elgg_event_handler('init','system','notification_init',0); - register_elgg_event_handler('create','all','object_notifications'); + register_elgg_event_handler('create','object','object_notifications'); ?> \ No newline at end of file -- cgit v1.2.3