You are here

function notifications_admin_help in Notifications 6.3

Pseudo-implementation of hook_help, just for admin pages

1 call to notifications_admin_help()
notifications_help in ./notifications.module
Implementation of hook_help()
1 string reference to 'notifications_admin_help'
notifications_help in ./notifications.module
Implementation of hook_help()

File

./notifications.admin.inc, line 6

Code

function notifications_admin_help($path, $arg) {
  if (strstr($path, 'admin/messaging/subscriptions')) {
    switch ($arg[3]) {
      case 'queue':
        return '<p>' . t('Manually run queue operations seeing all logs. For extended log information enable the <strong>Messaging Debug</strong> module.') . '</p>';
      case 'admin':
        return '<p>' . t('Here you can see all the subscriptions on the site using different filters and apply bulk operations to all selected subscriptions.') . '</p>';
    }
  }
}