You are here

apachesolr_multilingual.module in Apache Solr Multilingual 8

File

apachesolr_multilingual.module
View source
<?php

/**
 * @file
 * Contains apachesolr_multilingual.module.
 */
use Drupal\Core\Routing\RouteMatchInterface;

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

/**
 * Implements hook_theme().
 */
function apachesolr_multilingual_theme() {
  $theme = [];
  return $theme;
}

Functions