You are here

public function GoogleAnalyticsArgument::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 ArgumentPluginBase::defineOptions

File

src/Plugin/views/argument/GoogleAnalyticsArgument.php, line 48

Class

GoogleAnalyticsArgument
Provides base argument functionality for Google Analytics fields.

Namespace

Drupal\google_analytics_reports\Plugin\views\argument

Code

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