You are here

public function GoogleAnalyticsNumeric::defineOptions in Google Analytics Reports 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 GoogleAnalyticsBase::defineOptions

File

src/Plugin/views/filter/GoogleAnalyticsNumeric.php, line 23

Class

GoogleAnalyticsNumeric
Simple filter to handle numerics for Google Analytics.

Namespace

Drupal\google_analytics_reports\Plugin\views\filter

Code

public function defineOptions() {
  $options = parent::defineOptions();
  $options['value'] = [
    'contains' => [
      'min' => [
        'default' => '',
      ],
      'max' => [
        'default' => '',
      ],
      'value' => [
        'default' => '',
      ],
    ],
  ];
  return $options;
}