function hijri_help in Hijri 8.2
Same name and namespace in other branches
- 8 hijri.module \hijri_help()
- 7 hijri.module \hijri_help()
- 3.0.x hijri.module \hijri_help()
- 1.0.x hijri.module \hijri_help()
Implements hook_help().
File
- ./
hijri.module, line 13 - 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;
}
}