You are here

function atom_reference_field_info in Scald: Media Management made easy 6

Same name and namespace in other branches
  1. 7 modules/fields/atom_reference/atom_reference.module \atom_reference_field_info()

Implements hook_field_info().

File

atom_reference/atom_reference.module, line 11
Defines a new field type, allowing to directly reference Scald Atoms from a node.

Code

function atom_reference_field_info() {
  return array(
    'atom_reference' => array(
      'label' => t('Atom Reference'),
      'description' => 'This field stores the ID of a related atom as an integer value',
    ),
  );
}