sector_contact-8.x-1.0-beta2/sector_contact.module
sector_contact.module
<?php
/**
* @file
* Contains sector_contact.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function sector_contact_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the sector_contact module.
case 'help.page.sector_contact':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Sector content add on') . '</p>';
return $output;
default:
}
}
