function multiselect_help in Multiselect 6
Same name and namespace in other branches
- 8 multiselect.module \multiselect_help()
- 5.2 multiselect.module \multiselect_help()
- 5 multiselect.module \multiselect_help()
- 7 multiselect.module \multiselect_help()
- 2.x multiselect.module \multiselect_help()
Implementation of hook_help().
File
- ./
multiselect.module, line 12 - Allows users to select multiple items in an easier way than the normal node-reference widget.
Code
function multiselect_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/help#multiselect':
$output = '<p>' . t('Provides a CCK widget for editing fields that allows users to select from a list of options in a left box and have them visually moved into the right box when options are chosen.') . '</p>';
break;
}
return $output;
}