function gss_help in Google Site Search 8
Implements hook_help().
File
- ./
gss.module, line 13 - Contains gss.module..
Code
function gss_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the gss module.
case 'help.page.gss':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Provides integration with Google Site Search.') . '</p>';
return $output;
default:
return '';
}
}