From 23b0abb9742d3418484fe8d01609f6849d7960ce Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Wed, 4 Mar 2009 08:51:49 +0000 Subject: Redefine the batch API to be very very simple. You call batch::start() before starting a series of events, and batch::stop() when you're done. In batch mode, the notification module will store up pending notifications. When the batch job is complete, it'll send a single digested email to each user for all of her notifications. Updated the scaffold and local_import to use this. Haven't modified SimpleUploader yet. --- .../notification/helpers/notification_event.php | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) (limited to 'modules/notification/helpers/notification_event.php') diff --git a/modules/notification/helpers/notification_event.php b/modules/notification/helpers/notification_event.php index dde328d8..4ea0be05 100644 --- a/modules/notification/helpers/notification_event.php +++ b/modules/notification/helpers/notification_event.php @@ -52,23 +52,7 @@ class notification_event_Core { ->delete_all(); } - static function operation($name, $item) { - if ($name == "add") { - $id = Session::instance()->get("notification_batch_item_id"); - if ($id && $item->id != $id) { - notification::send_batch_add($id); - } - Session::instance()->set("notification_batch_item_id", $item->id); - } + static function batch_complete() { + notification::send_pending_notifications(); } - - static function end_operation($name) { - if ($name == "add") { - $id = Session::instance()->get_once("notification_batch_item_id"); - if ($id) { - notification::send_batch_add($id); - } - } - } - -} +} \ No newline at end of file -- cgit v1.2.3