You are here

function notifications_content_help in Notifications 7

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

Implementation of hook_help()

File

notifications_content/notifications_content.module, line 93
Subscriptions to content events

Code

function notifications_content_help($path, $arg) {
  if ($path == 'admin/config/messaging/subscriptions/content') {
    $output = '<p>' . t('Content subscriptions are subscriptions to nodes that will produce notifications when a node is posted or updated or when a comment is posted for that nodes. Notifications will be sent only for published content so if you need to be notified of unpublished content waiting for approval you better use Triggers and Actions or some other module for that.') . '</p>';
    $output .= '<p>' . t('On this page you can set which of the available subscription types are allowed. Alternatively you can select the <em>Set up for each content type</em> option and use the <a href="@content-type-settings">Administer Content types</a> page. These settings will be combined with permissions and other options (See user interface options if enabled) to determine which subscriptions will be finally available for users.', array(
      '@content-type-settings' => url('admin/content/types'),
    )) . '</p>';
    return $output;
  }
}