guardr_core.module in Guardr Core 8
Same filename and directory in other branches
Contains guardr_core.module.
File
guardr_core.moduleView source
<?php
/**
* @file
* Contains guardr_core.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function guardr_core_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the guardr_core module.
case 'help.page.guardr_core':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Custom configuration related to the Guardr distribution.') . '</p>';
return $output;
default:
}
}
Functions
Name![]() |
Description |
---|---|
guardr_core_help | Implements hook_help(). |