wsdata.module in Web Service Data 8
Same filename and directory in other branches
Contains wsdata.module.
File
wsdata.moduleView source
<?php
/**
* @file
* Contains wsdata.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
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:
}
}
Functions
Name | Description |
---|---|
wsdata_help | Implements hook_help(). |