Skip to content

Instantly share code, notes, and snippets.

@zachseifts
Created December 15, 2011 22:22
Show Gist options
  • Save zachseifts/1483201 to your computer and use it in GitHub Desktop.
Save zachseifts/1483201 to your computer and use it in GitHub Desktop.
<?php
/**
* Implements hook_cron_queue_info()
*/
function thing_cron_queue_info() {
$queues['EmailQueue'] = array(
'worker callback' => 'email_queue_worker',
'time' => 3600,
);
return $queues;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment