You are here

function imagefield_extended_help in ImageField Extended 6.4

Same name and namespace in other branches
  1. 6.3 imagefield_extended.module \imagefield_extended_help()

Implementation of hook_help().

File

./imagefield_extended.module, line 30
Insert additional fields into a FileField / 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, the additional fields defined here will be configurable per field type. All new additional fields are disabled by default.</p>');
  }
}