You are here

function clients_views_help in Web Service Clients 7

Same name and namespace in other branches
  1. 6 clients/clients_views/clients_views.module \clients_views_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

clients/clients_views/clients_views.module, line 17
Client for Views

Code

function clients_views_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#clients_views":
      $output = '<p>' . t("Client for Views 3.") . '</p>';
      break;
  }
  return $output;
}