You are here

function imceimage_field_info in Imce CCK Image 6

Same name and namespace in other branches
  1. 6.2 imceimage.module \imceimage_field_info()

Declare information about a field type hook_field_info()

Return value

An array keyed by field type name. Each element of the array is an associative array with these keys and values:

  • "label": The human-readable label for the field type.

File

./imceimage.module, line 45

Code

function imceimage_field_info() {
  return array(
    'imceimage' => array(
      'label' => 'IMCE Image',
      'description' => t('Use IMCE browser to attach images to content'),
      'callbacks' => array(
        'tables' => CONTENT_CALLBACK_DEFAULT,
        'arguments' => CONTENT_CALLBACK_DEFAULT,
      ),
    ),
  );
}