You are here

function notifications_widget_help in Notifications widget 8

Implements hook_help().

File

./notifications_widget.module, line 15
Contains notifications_widget.module.

Code

function notifications_widget_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the notifications widget module.
    case 'help.page.notifications_widget':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Notification Module allows you to configure the site notification on bell with feature of :') . '</p>';
      $output .= '<ul><li>' . t('Read') . '</li><li>' . t('Unread') . '</li><li>' . t('Delete') . '</li><li>' . t('Clear All') . '</li></ul>';
      $output .= '<p>' . t('It allows to customize the notification message.It provides a block which contains notifications based on settings') . '</p>';
      return $output;
    default:
  }
}