You are here

function content_taxonomy_handler_relationship::option_definition in Content Taxonomy 6.2

File

includes/views/content_taxonomy_handler_relationship.inc, line 17
Handles content relationships and deals properly with multiple values by allowing the views administrator to select deltas.

Class

content_taxonomy_handler_relationship
@file Handles content relationships and deals properly with multiple values by allowing the views administrator to select deltas.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['delta'] = array(
    'default' => -1,
  );
  return $options;
}