You are here

function wsdata_help in Web Service Data 2.0.x

Same name and namespace in other branches
  1. 8 wsdata.module \wsdata_help()

Implements hook_help().

File

./wsdata.module, line 13
Contains wsdata.module.

Code

function wsdata_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the wsdata module.
    case 'help.page.wsdata':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Web service data sources as configuration.') . '</p>';
      return $output;
    default:
  }
}