function clients_drupal_help in Web Service Clients 7.2
Same name and namespace in other branches
- 6.2 connections/clients_drupal/clients_drupal.module \clients_drupal_help()
- 6 backends/clients_drupal/clients_drupal.module \clients_drupal_help()
- 7.3 connections/clients_drupal/clients_drupal.module \clients_drupal_help()
- 7 backends/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
- connections/
clients_drupal/ clients_drupal.module, line 14 - Provides connection types for Clients module that connect to remote Drupal sites running Services module.
Code
function clients_drupal_help($path, $arg) {
$output = '';
switch ($path) {
case "admin/help#clients_drupal":
$output = '<p>' . t("Provides connection plugins for Clients module that connect to remote Drupal sites running Services module.") . '</p>';
break;
}
return $output;
}