Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / cron_queue_info.twig
1 /**
2  * Implements hook_cron_queue_info().
3  */
4 function {{ machine_name }}_cron_queue_info() {
5   $queues['aggregator_feeds'] = array(
6     'worker callback' => 'aggregator_refresh',
7     'time' => 60,
8   );
9   return $queues;
10 }