You are here

function nodereference_field_info in Content Construction Kit (CCK) 6

Same name and namespace in other branches
  1. 5 nodereference.module \nodereference_field_info()
  2. 6.3 modules/nodereference/nodereference.module \nodereference_field_info()
  3. 6.2 modules/nodereference/nodereference.module \nodereference_field_info()

Implementation of hook_field_info().

Here we indicate that the content module will use its default handling for the view of this field.

Callbacks can be omitted if default handing is used. They're included here just so this module can be used as an example for custom modules that might do things differently.

File

modules/nodereference/nodereference.module, line 64
Defines a field type for referencing one node from another.

Code

function nodereference_field_info() {
  return array(
    'nodereference' => array(
      'label' => t('Node reference'),
      'description' => t('Store the ID of a related node as an integer value.'),
      'callbacks' => array(
        'tables' => CONTENT_CALLBACK_DEFAULT,
        'arguments' => CONTENT_CALLBACK_DEFAULT,
      ),
    ),
  );
}