function apachesolr_confgen_help in Apache Solr Config Generator 8
Implements hook_help().
File
- ./
apachesolr_confgen.module, line 13 - Contains apachesolr_confgen.module.
Code
function apachesolr_confgen_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the apachesolr_confgen module.
case 'help.page.apachesolr_confgen':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Generator for Apache Solr Configuration Files.') . '</p>';
return $output;
default:
}
}