xtcentity-2.x-dev/xtcprofile/xtcprofile.module
xtcprofile/xtcprofile.module
<?php
/**
* @file
* Contains xtcprofile.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function xtcprofile_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the xtcprofile module.
case 'help.page.xtcprofile':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('A Profile dedicated Xtended Content.') . '</p>';
return $output;
default:
}
}
