You are here

function clients_drupal_help in Web Service Clients 7

Same name and namespace in other branches
  1. 6.2 connections/clients_drupal/clients_drupal.module \clients_drupal_help()
  2. 6 backends/clients_drupal/clients_drupal.module \clients_drupal_help()
  3. 7.3 connections/clients_drupal/clients_drupal.module \clients_drupal_help()
  4. 7.2 connections/clients_drupal/clients_drupal.module \clients_drupal_help()

Implementation of hook_help()

Parameters

path which path of the site we're displaying help:

arg array that holds the current path as would be returned from arg() function:

Return value

help text for the path

File

backends/clients_drupal/clients_drupal.module, line 13
Drupal Services plugin for Clients module

Code

function clients_drupal_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#clients_drupal":
      $output = '<p>' . t("Clients - Drupal Services.") . '</p>';
      break;
  }
  return $output;
}