You are here

public function GoogleAnalyticsString::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/GoogleAnalyticsString.php, line 23

Class

GoogleAnalyticsString
Basic textfield filter to handle string filtering commands.

Namespace

Drupal\google_analytics_reports\Plugin\views\filter

Code

public function defineOptions() {
  $options = parent::defineOptions();
  $options['expose']['contains']['required'] = [
    'default' => FALSE,
  ];
  return $options;
}