function hosting_cron_hosting_feature in Hostmaster (Aegir) 6
Implementation of hook_hosting_feature().
File
- modules/
hosting/ cron/ hosting.feature.cron.inc, line 10 - Expose the cron feature to hostmaster.
Code
function hosting_cron_hosting_feature() {
$features['cron'] = array(
'title' => t('Cron queue'),
'description' => t('Keeps track of running the cron process on all your sites.'),
'status' => HOSTING_FEATURE_ENABLED,
'module' => 'hosting_cron',
);
return $features;
}