function search_api_synonym_help in Search API Synonym 8
Implements hook_help().
File
- ./
search_api_synonym.module, line 23 - Contains search_api_synonym.module.
Code
function search_api_synonym_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the search_api_synonym module.
case 'help.page.search_api_synonym':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Managing of search synonyms in Drupal.') . '</p>';
return $output;
default:
return '';
}
}