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