popsu-d7/modules/system/tests/cron_queue_test.module
2015-04-26 18:38:56 +02:00

16 lines
330 B
Plaintext

<?php
/**
* Implements hook_cron_queue_info().
*/
function cron_queue_test_cron_queue_info() {
$queues['cron_queue_test_exception'] = array(
'worker callback' => 'cron_queue_test_exception',
);
return $queues;
}
function cron_queue_test_exception($item) {
throw new Exception('That is not supposed to happen.');
}