You are here

protected function EntityReverseLocation::defineOptions in CiviCRM Entity 8.3

Information about options for all kinds of purposes will be held here.


'option_name' => array(
 - 'default' => default value,
 - 'contains' => (optional) array of items this contains, with its own
     defaults, etc. If contains is set, the default will be ignored and
     assumed to be array().
 ),

Return value

array Returns the options of this handler/plugin.

Overrides RelationshipPluginBase::defineOptions

File

src/Plugin/views/relationship/EntityReverseLocation.php, line 100

Class

EntityReverseLocation
Reverse CiviCRM entity reference locations.

Namespace

Drupal\civicrm_entity\Plugin\views\relationship

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['location_type'] = [
    'default' => 0,
  ];
  $options['is_billing'] = [
    'default' => FALSE,
    'bool' => TRUE,
  ];
  $options['is_primary'] = [
    'default' => FALSE,
    'bool' => TRUE,
  ];
  return $options;
}