function similarterms_help in Similar By Terms 7
Same name and namespace in other branches
- 8 similarterms.module \similarterms_help()
- 6 similarterms.module \similarterms_help()
Display help and module information
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
- ./
similarterms.module, line 17 - Similar By Terms module displays a block with similar content based on taxonomy terms.
Code
function similarterms_help($path, $arg) {
$output = '';
switch ($path) {
case "admin/help#similarterms":
$output = '<p>' . t("Displays a block with similar content based on taxonomy terms.") . '</p>';
break;
}
return $output;
}