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