You are here

function rules_scheduler_action_help in Rules 6

Help for the base action implementation.

File

rules_scheduler/rules_scheduler.rules.inc, line 80
Rules integration for the rules scheduler module.

Code

function rules_scheduler_action_help() {
  return t("The evaluation of the rule set is going to be scheduled by cron. So make sure you have configured cron correctly by checking your site's !status.", array(
    '!status' => l('Status report', 'admin/reports/status'),
  )) . ' ' . t('Also note that the scheduling time accuracy depends on your configured cron interval.');
}