From 32cb70870c2cd5bd1d01031982eba4fbaaa5989b Mon Sep 17 00:00:00 2001 From: ben Date: Thu, 22 Jan 2009 15:31:38 +0000 Subject: Added more granular notification hook git-svn-id: https://code.elgg.org/elgg/trunk@2598 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/notification.php | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/engine/lib/notification.php b/engine/lib/notification.php index 65d5f6a75..a70d051ff 100644 --- a/engine/lib/notification.php +++ b/engine/lib/notification.php @@ -375,8 +375,22 @@ if ($interested_users = get_entities_from_relationship('notify',$object->container_guid,true,'user','',0,'',99999)) { if (is_array($interested_users)) foreach($interested_users as $user) { - if ($user instanceof ElggUser) - notify_user($user->guid,$object->container_guid,$descr,$string); + if ($user instanceof ElggUser) { + $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) { + + $string = trigger_plugin_hook('notify:message',$entity->getType(),array( + 'entity' => $object, + 'to_entity' => $user, + 'method' => $v + ),$string); + notify_user($user->guid,$object->container_guid,$descr,$string,NULL,array($v)); + } + } } } -- cgit v1.2.3