function bibcite_import_help in Bibliography & Citation 8
Same name and namespace in other branches
- 2.0.x modules/bibcite_import/bibcite_import.module \bibcite_import_help()
Implements hook_help().
File
- modules/
bibcite_import/ bibcite_import.module, line 34 - Module hooks implementations.
Code
function bibcite_import_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.bibcite_import':
$module = 'bibcite_import';
return \Drupal::service('bibcite.help_service')
->getHelpMarkup([], $route_name, $module);
}
}