You are here

function notifications_nodetype_help in Notifications 6.4

Implementation of hook_help()

File

notifications_nodetype/notifications_nodetype.module, line 10
Notifications content type extension

Code

function notifications_nodetype_help($path, $arg) {
  switch ($path) {
    case 'admin/messaging/notifications/events':
      $output = '<p>' . t('When an event type has subtypes, the parent type and each of the subtypes you want to produce notifications must be enabled.') . '</p>';
      return $output;
  }
}