You are here

function download_count_cron_queue_info in Download Count 7.3

Implements hook_cron_queue_info().

File

./download_count.module, line 208
Tracks file downloads for files stored in the drupal files table using the private files setting or custom private filefield.

Code

function download_count_cron_queue_info() {
  $queues['download_count'] = array(
    'worker callback' => 'download_count_cache_processor',
    'time' => 60,
  );
  return $queues;
}