hosting.feature.cron.inc in Hosting 7.4
Same filename and directory in other branches
Expose the cron feature to hostmaster.
File
cron/hosting.feature.cron.incView source
<?php
/**
* @file
* Expose the cron feature to hostmaster.
*/
/**
* Implements hook_hosting_feature().
*/
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',
'group' => 'optional',
);
return $features;
}
Functions
Name | Description |
---|---|
hosting_cron_hosting_feature | Implements hook_hosting_feature(). |