function image_popup_help in Simple Image Popup 8
Same name and namespace in other branches
- 2.x image_popup.module \image_popup_help()
Implements hook_help().
File
- ./
image_popup.module, line 13 - Contains image_popup.module..
Code
function image_popup_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the image_popup module.
case 'help.page.image_popup':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('This module gives the popup field formatter for the image field types.') . '</p>';
return $output;
default:
}
}