You are here

public static function Notifications_Event::track_load in Notifications 6.4

1 call to Notifications_Event::track_load()
Notifications_Queue::process_group in includes/notifications_queue.class.inc
Process queued rows, send messages, etc, etc...

File

includes/notifications_event.class.inc, line 424
Drupal Notifications Framework - Default class file

Class

Notifications_Event
Message destination class

Code

public static function track_load($eid) {
  if (($event = Notifications_Event::load($eid)) && $event
    ->load_objects() && empty($event->delete)) {
    $event
      ->track_count();
    $event
      ->track();
    return $event;
  }
}