You are here

bibcite_bibtex.module in Bibliography & Citation 8

Same filename and directory in other branches
  1. 2.0.x modules/bibcite_bibtex/bibcite_bibtex.module

Module hooks.

File

modules/bibcite_bibtex/bibcite_bibtex.module
View source
<?php

/**
 * @file
 * Module hooks.
 */
use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
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);
  }
}

Functions

Namesort descending Description
bibcite_bibtex_help Implements hook_help().