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