function content_synchronizer_help in Content Synchronizer 3.x
Same name and namespace in other branches
- 8.2 content_synchronizer.module \content_synchronizer_help()
Implements hook_help().
File
- ./
content_synchronizer.module, line 20 - Hooks definitions for content_synchronizer module.
Code
function content_synchronizer_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the dillon module.
case 'help.page.test_module':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Please check the module information page : <a href="//@dest">@dest</a>', [
'@dest' => 'www.drupal.org/projects/content_synchronizer',
]) . '</p>';
return $output;
default:
}
}