You are here

function notifications_anonymous_help in Notifications 6.4

Implementation of hook_help()

File

notifications_anonymous/notifications_anonymous.module, line 10
Notifications for anonymous users

Code

function notifications_anonymous_help($path, $arg) {
  switch ($path) {
    case 'admin/messaging/notifications/subscriptions/anonymous':
      $output = '<p>' . t('These are specific settings for anonymous users. Not all send methods or send intervals available for registered users may be suitable for anonymous users.') . '</p>';
      return $output;
  }
}