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