function popup_dialog_help in Popup Dialog 8
Same name and namespace in other branches
- 8.2 popup_dialog.module \popup_dialog_help()
Implements hook_help().
File
- ./
popup_dialog.module, line 13 - Contains popup_dialog.module..
Code
function popup_dialog_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the popup_dialog module.
case 'help.page.popup_dialog':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Popup dialog box based on user browser session.') . '</p>';
return $output;
default:
}
}