You are here

function bibcite_import_help in Bibliography & Citation 2.0.x

Same name and namespace in other branches
  1. 8 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);
  }
}