You are here

function og_notifications_help in Organic groups 5.3

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

Implementation of hook_help().

File

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

Code

function og_notifications_help($section) {
  global $user;
  switch ($section) {
    case 'user/' . $user->uid . '/notifications/group':
      return t('Customize notifications for each of your groups and each of their content types along with their frequency and delivery method.');
  }
}