You are here

function og_notifications_help in Organic groups 6

Same name and namespace in other branches
  1. 5.8 og_notifications/og_notifications.module \og_notifications_help()
  2. 5.3 og_notifications/og_notifications.module \og_notifications_help()
  3. 6.2 modules/og_notifications/og_notifications.module \og_notifications_help()

Implementation of hook_help().

File

modules/og_notifications/og_notifications.module, line 13
Provide notifications and messaging support for organic groups.

Code

function og_notifications_help($path, $arg) {
  global $user;
  switch ($path) {
    case 'user/%/notifications/group':
      return t('Customize notifications for each of your groups along with their frequency and delivery method. If so desired, you can also restrict notifications only for certain content types in each group.');
  }
}