simple_tmgmt-1.0.x-dev/modules/simple_tmgmt_deepl/simple_tmgmt_deepl.module
modules/simple_tmgmt_deepl/simple_tmgmt_deepl.module
<?php
/**
* @file
* Contains simple_tmgmt_deepl.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function simple_tmgmt_deepl_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the simple_tmgmt_deepl module.
case 'help.page.simple_tmgmt_deepl':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Simplifies the translation flow and error messages for content editors, notifies on error by mail, optionally integrates with Simple TMGMT Machine.') . '</p>';
return $output;
default:
}
}
