function clients_feeds_help in Web Service Clients 6
Same name and namespace in other branches
- 7 clients/clients_feeds/clients_feeds.module \clients_feeds_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_feeds/ clients_feeds.module, line 18
Code
function clients_feeds_help($path, $arg) {
$output = '';
switch ($path) {
case "admin/help#clients":
$output = '<p>' . t("Clients Feeds .") . '</p>';
break;
}
return $output;
}