apachesolr_multilingual.module in Apache Solr Multilingual 8
Same filename and directory in other branches
Contains apachesolr_multilingual.module.
File
apachesolr_multilingual.moduleView 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
Name | Description |
---|---|
apachesolr_multilingual_help | Implements hook_help(). |
apachesolr_multilingual_theme | Implements hook_theme(). |