function og_cron_queue_info in Organic groups 7.2
Implements hook_cron_queue_info().
File
- ./
og.module, line 1629 - Enable users to create and manage groups with roles and permissions.
Code
function og_cron_queue_info() {
$items['og_membership_orphans'] = array(
'title' => t('OG orphans'),
'worker callback' => 'og_membership_orphans_worker',
'time' => 60,
);
return $items;
}