function noderelationships_widget_info in Node Relationships 6
Implementation of hook_widget_info().
File
- ./
noderelationships.module, line 206 - 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_info() {
return array(
'noderelationships_backref' => array(
'label' => t('Back reference'),
'field types' => array(
'noderelationships_backref',
),
'multiple values' => CONTENT_HANDLE_MODULE,
),
);
}