You are here

function noderelationships_widget in Node Relationships 6

Implementation of hook_widget().

File

./noderelationships.module, line 219
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_widget(&$form, &$form_state, $field, $items, $delta = NULL) {

  // Back reference fields do not provide any widget in the node edit form.
  return array();
}