You are here

function notifications_ui_help in Notifications 5

Same name and namespace in other branches
  1. 6.4 notifications_ui/notifications_ui.module \notifications_ui_help()
  2. 6 notifications_ui/notifications_ui.module \notifications_ui_help()
  3. 6.2 notifications_ui/notifications_ui.module \notifications_ui_help()
  4. 6.3 notifications_ui/notifications_ui.module \notifications_ui_help()
  5. 7 notifications_ui/notifications_ui.module \notifications_ui_help()

Implementation of hook_help()

File

notifications_ui/notifications_ui.module, line 10
User Interface for subscriptions modules

Code

function notifications_ui_help($section) {
  switch ($section) {
    case 'admin/messaging/notifications/ui':
      $output = '<p>' . t('These are UI settings only. They will be combined with other settings and permissions to determine which subscription options will be finally available for each page.') . '</p>';
      if (module_exists('notifications_content')) {
        $output .= '<p>' . t('To enable different subscription options for each content type visit the !content-type-settings', array(
          '!content-type-settings' => l(t('content types settings page'), 'admin/content/types'),
        )) . '</p>';
      }
      return $output;
  }
}