You are here

function _uc_csv_is_cron_running in Ubercart CSV 7.2

Helper to see if cron is running

1 call to _uc_csv_is_cron_running()
uc_csv_select_report_to_export_submit in ./uc_csv.module
Put together an export based on the report id

File

./uc_csv.module, line 870

Code

function _uc_csv_is_cron_running() {
  if (!lock_acquire('cron', 240.0)) {
    return TRUE;
  }
  else {
    lock_release('cron');
    return FALSE;
  }
}