You are here

function party_handler_relationship_party_from_attached_entity::option_definition in Party 7

Defines default values for options.

Overrides views_handler_relationship::option_definition

File

includes/views/party_handler_relationship_party_from_attached_entity.inc, line 11
Relationship from an attached entity to a party.

Class

party_handler_relationship_party_from_attached_entity
@file Relationship from an attached entity to a party.

Code

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