You are here

function skype_help in Skype 8

Same name and namespace in other branches
  1. 7 skype.module \skype_help()

Implements hook_help().

File

./skype.module, line 11

Code

function skype_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.skype':
      $output = file_get_contents(drupal_get_path('module', 'skype') . '/README.md');
      return '<pre>' . $output . '</pre>';
  }
}