function clients_flickr_help in Web Service Clients 7
Same name and namespace in other branches
- 6 backends/clients_flickr/clients_flickr.module \clients_flickr_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_flickr/ clients_flickr.module, line 13 - Flickr plugin for Clients module
Code
function clients_flickr_help($path, $arg) {
$output = '';
switch ($path) {
case "admin/help#clients_flickr":
$output = '<p>' . t("Clients - Flickr.") . '</p>';
break;
}
return $output;
}