presto-8.x-2.2/modules/presto_contact/presto_contact.module
modules/presto_contact/presto_contact.module
<?php
/**
* @file
* Contains presto_contact.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function presto_contact_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the presto_contact module.
case 'help.page.presto_contact':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Configuration for contact page.') . '</p>';
return $output;
default:
}
}
