You are here

public static function Notifications_Event::queue_clean in Notifications 6.4

Same name and namespace in other branches
  1. 7 notifications.event.inc \Notifications_Event::queue_clean()

Clean up queued events

Replaces notifications_event_clean()

Parameters

$update: Update event counter

File

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

Class

Notifications_Event
Message destination class

Code

public static function queue_clean($update = FALSE) {
  return notifications_queue()
    ->event_clean($update);
}