You are here

function Notifications_Queue::process_cron in Notifications 6.4

Callback for Drupal cron

File

includes/notifications_queue.class.inc, line 68

Class

Notifications_Queue
Queue management and processing

Code

function process_cron() {
  $this
    ->process_clean();
  $this
    ->process_prepare();
  $this
    ->process_control('cron');
  $this
    ->process_run();
}