function clipboardjs_help in Clipboard.js 2.0.x
Same name and namespace in other branches
- 8 clipboardjs.module \clipboardjs_help()
- 7 clipboardjs.module \clipboardjs_help()
Implements hook_help().
File
- ./
clipboardjs.module, line 13 - Contains clipboardjs.module.
Code
function clipboardjs_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.clipboardjs':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Clipboard.js') . '</p>';
return $output;
default:
}
}