You are here

function noderelationships_field_settings in Node Relationships 6

Implementation of hook_field_settings().

See also

noderelationships_cck_backref_create()

_noderelationships_cck_admin_forms_alter()

File

./noderelationships.module, line 174
This is the main script for the noderelationships module. It merely contains the implementation of hooks invoked by Drupal core, CCK, Views, etc. All common functions are externalized into several scripts that are included on demand.

Code

function noderelationships_field_settings($op, $field) {
  if ($op == 'save') {
    return array(
      'referrer_type',
      'referrer_field',
    );
  }
  elseif ($op == 'views data') {
    return array();
  }
}