apachesolr_confgen.module in Apache Solr Config Generator 8
Same filename and directory in other branches
Contains apachesolr_confgen.module.
File
apachesolr_confgen.moduleView source
<?php
/**
 * @file
 * Contains apachesolr_confgen.module.
 */
use Drupal\Core\Routing\RouteMatchInterface;
/**
 * Implements hook_help().
 */
function apachesolr_confgen_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    // Main module help for the apachesolr_confgen module.
    case 'help.page.apachesolr_confgen':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Generator for Apache Solr Configuration Files.') . '</p>';
      return $output;
    default:
  }
}
/**
 * Implements hook_theme().
 */
function apachesolr_confgen_theme() {
  $theme = [];
  return $theme;
}Functions
| Name   | Description | 
|---|---|
| apachesolr_confgen_help | Implements hook_help(). | 
| apachesolr_confgen_theme | Implements hook_theme(). | 
