You are here

function notifications_scheduler_help in Notifications 7

Implements hook_help().

File

notifications_scheduler/notifications_scheduler.module, line 24
Notifications scheduler module

Code

function notifications_scheduler_help($path, $arg) {
  switch ($path) {
    case 'admin/config/messaging/notifications/events':
    case 'admin/config/messaging/notifications/scheduler':
      $output = '<p>' . t('Scheduled notifications are an special type of events that are triggered on a timely basis instead of responding to system events. To configure scheduled notifications:');
      $output .= '<ul><li>' . t('Create timed triggers using the <a href="@url">Job Scheduler configuration</a> page.', array(
        '@url' => url('admin/config/system/job_scheduler'),
      )) . '</li>';
      $output .= '<li>' . t('Configure the Notifications on the <a href="@url">Actions settings page</a>.', array(
        '@url' => url('admin/config/system/actions'),
      )) . '</li>';
      $output .= '</ul></p>';
      return $output;
  }
}