function multiselect_help in Multiselect 5
Same name and namespace in other branches
- 8 multiselect.module \multiselect_help()
- 5.2 multiselect.module \multiselect_help()
- 6 multiselect.module \multiselect_help()
- 7 multiselect.module \multiselect_help()
- 2.x multiselect.module \multiselect_help()
Implementation of hook_help
File
- ./
multiselect.module, line 17 - Allows users to select multiple items in an easier way than the normal node-reference widget
Code
function multiselect_help($section = '') {
$output = '';
switch ($section) {
case "admin/help#multiselect":
$output = '<p>' . t("Provides an easy to use control for adding multiple items.") . '</p>';
break;
}
return $output;
}