client_connection-8.x-1.x-dev/modules/client_connection_example/client_connection_example.module
modules/client_connection_example/client_connection_example.module
<?php
/**
* @file
* Contains client_connection_example.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function client_connection_example_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the client_connection_example module.
case 'help.page.client_connection_example':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('An example Client Connection module.') . '</p>';
return $output;
default:
}
}
