function clients_views_help in Web Service Clients 6
Same name and namespace in other branches
- 7 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 18 - Client for Views @author Django Beatty
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;
}