function node_convert_help in Node Convert 5
Same name and namespace in other branches
- 6 node_convert.module \node_convert_help()
- 7 node_convert.module \node_convert_help()
Display help and module information
Parameters
section which section of the site we're displaying help:
Return value
help text for section
File
- ./
node_convert.module, line 8
Code
function node_convert_help($section = '') {
$output = '';
switch ($section) {
case "admin/help#node_convert":
$output = '<p>' . t("Converts a node's type to another type, also transfers cck field values.") . '</p>';
break;
}
return $output;
}