You are here

function clipboardjs_help in Clipboard.js 8

Same name and namespace in other branches
  1. 7 clipboardjs.module \clipboardjs_help()
  2. 2.0.x 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:
  }
}