function prepopulate_help in Prepopulate 6
Same name and namespace in other branches
- 5 prepopulate.module \prepopulate_help()
- 6.2 prepopulate.module \prepopulate_help()
- 7.2 prepopulate.module \prepopulate_help()
Implementation of hook_help().
File
- ./
prepopulate.module, line 15 - Fill form elements with data from GET values.
Code
function prepopulate_help($path, $arg) {
switch ($path) {
case 'admin/modules#description':
return t('Pre-populates forms with HTTP GET data');
break;
}
}