You are here

function relation_handler_relationship::option_definition in Relation 7

Define r_index option.

Overrides views_handler_relationship::option_definition

File

views/relation_handler_relationship.inc, line 12
Views relationship support.

Class

relation_handler_relationship
@file Views relationship support.

Code

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