function _hosting_cron_requirements in Hosting 5
File
- ./
hosting_help.inc, line 200 - Hosting help subsystem
Code
function _hosting_cron_requirements() {
$cron_cmd['!queueconf'] = l(t("Queue administration"), "admin/settings/queues");
$cron_cmd['@cron_line'] = hosting_queues_cron_cmd();
$help['title'] = t('A cron entry for queue dispatcher.');
$help['summary'][] = t('Changes to this system are executed via a back end script which needs to be called by a user other than
the web server user for security reasons at regular intervals.');
$help['summary'][] = t('The intervals at which these commands are run can be customised by going to the !queueconf section.', $cron_cmd);
$help['summary'][] = t('The <code>hosting setup</code> command installs the required cron entry for you.', $cron_cmd);
$help['configuration'] = t('Add the following line to your crontab : <code>@cron_line</code>', $cron_cmd);
return $help;
}