function acquia_contenthub_help in Acquia Content Hub 8
Same name and namespace in other branches
- 8.2 acquia_contenthub.module \acquia_contenthub_help()
Implements hook_help().
File
- ./
acquia_contenthub.module, line 16 - Contains acquia_contenthub.module.
Code
function acquia_contenthub_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.acquia_contenthub':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Some info about Acquia Content Hub') . '</p>';
return $output;
}
}