You are here

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

2 calls to GoogleAnalyticsBase::defineOptions()
GoogleAnalyticsNumeric::defineOptions in src/Plugin/views/filter/GoogleAnalyticsNumeric.php
Information about options for all kinds of purposes will be held here.
GoogleAnalyticsString::defineOptions in src/Plugin/views/filter/GoogleAnalyticsString.php
Information about options for all kinds of purposes will be held here.
2 methods override GoogleAnalyticsBase::defineOptions()
GoogleAnalyticsNumeric::defineOptions in src/Plugin/views/filter/GoogleAnalyticsNumeric.php
Information about options for all kinds of purposes will be held here.
GoogleAnalyticsString::defineOptions in src/Plugin/views/filter/GoogleAnalyticsString.php
Information about options for all kinds of purposes will be held here.

File

src/Plugin/views/filter/GoogleAnalyticsBase.php, line 46

Class

GoogleAnalyticsBase
Provides base filter functionality for Google Analytics fields.

Namespace

Drupal\google_analytics_reports\Plugin\views\filter

Code

public function defineOptions() {
  $options = parent::defineOptions();
  if ($this->isCustom) {
    $options['custom_field_number'] = [
      'default' => 1,
    ];
  }
  return $options;
}