You are here

function background_process_ass_cron in Background Process 8

Same name and namespace in other branches
  1. 6 background_process_ass/background_process_ass.module \background_process_ass_cron()
  2. 7.2 background_process_ass/background_process_ass.module \background_process_ass_cron()
  3. 7 background_process_ass/background_process_ass.module \background_process_ass_cron()

Implements hook_cron().

1 string reference to 'background_process_ass_cron'
background_process_ass_cron_alter in background_process_ass/background_process_ass.module
Implements hook_cron_alter().

File

background_process_ass/background_process_ass.module, line 18
Implements Background Process Ass Module. @todo Implement admin interface. @todo Fix runtime check of running process.

Code

function background_process_ass_cron() {

  // Don't use more than 30 seconds to unlock.
  @set_time_limit(30);
  background_process_ass_auto_unlock();
}