You are here

public function Proximity::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 FilterPluginBase::defineOptions

File

src/Plugin/views/filter/Proximity.php, line 67

Class

Proximity
Filter handler for proximity.

Namespace

Drupal\civicrm_entity\Plugin\views\filter

Code

public function defineOptions() {
  $options = parent::defineOptions();
  $options['value'] = [
    'contains' => [
      'value' => [
        'default' => '',
      ],
      'city' => [
        'default' => '',
      ],
      'state_province_id' => [
        'default' => '',
      ],
      // 'country' => ['default' => ''],
      'distance' => [
        'default' => '',
      ],
      'distance_unit' => [
        'default' => '',
      ],
    ],
  ];
  return $options;
}