You are here

wsdata.module in Web Service Data 2.0.x

Same filename and directory in other branches
  1. 8 wsdata.module
  2. 7 wsdata.module

Contains wsdata.module.

File

wsdata.module
View 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

Namesort descending Description
wsdata_help Implements hook_help().