function imagefield_extended_help in ImageField Extended 6.3
Same name and namespace in other branches
- 6.4 imagefield_extended.module \imagefield_extended_help()
Implementation of hook_help().
File
- ./
imagefield_extended.module, line 30 - Insert additional fields into an ImageField data array.
Code
function imagefield_extended_help($path, $arg) {
switch ($path) {
case 'admin/settings/imagefield-extended':
return t('<p>Once you have defined the new fields here, you need to create a "File" field using a "Image, with additional fields" widget. The additional fields that you have defined here will be configurable per field type. All new additional fields are disabled by default.</p>');
}
}