You are here

function apachesolr_multilingual_help in Apache Solr Multilingual 8

Implements hook_help().

File

./apachesolr_multilingual.module, line 13
Contains apachesolr_multilingual.module.

Code

function apachesolr_multilingual_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the apachesolr_multilingual module.
    case 'help.page.apachesolr_multilingual':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Apache Solr Multilingual.') . '</p>';
      return $output;
    default:
  }
}