You are here

function hijri_help in Hijri 3.0.x

Same name and namespace in other branches
  1. 8.2 hijri.module \hijri_help()
  2. 8 hijri.module \hijri_help()
  3. 7 hijri.module \hijri_help()
  4. 1.0.x hijri.module \hijri_help()

Implements hook_help().

File

./hijri.module, line 17
This module provides Hijri Date integration with Drupal core date field and with other Drupal contributions such as Views and Date.

Code

function hijri_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.saudi_identity':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('This module provides Hijri Date integration with Drupal core date field and with other Drupal contributions such as Views and Date.') . '</p>';
      return $output;
  }
}