function wsdata_help in Web Service Data 8
Same name and namespace in other branches
- 2.0.x 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:
}
}