public function ArgumentDefaultPluginBase::init

Initialize this plugin with the view and the argument it is linked to.

1 call to ArgumentDefaultPluginBase::init()
Tid::init in drupal/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument_default/Tid.php
Initialize this plugin with the view and the argument it is linked to.
1 method overrides ArgumentDefaultPluginBase::init()
Tid::init in drupal/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument_default/Tid.php
Initialize this plugin with the view and the argument it is linked to.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument_default/ArgumentDefaultPluginBase.php, line 35
Definition of Drupal\views\Plugin\views\argument_default\ArgumentDefaultPluginBase.

Class

ArgumentDefaultPluginBase
The fixed argument default handler; also used as the base.

Namespace

Drupal\views\Plugin\views\argument_default

Code

public function init(ViewExecutable $view, &$argument, $options) {
  $this
    ->setOptionDefaults($this->options, $this
    ->defineOptions());
  $this->view =& $view;
  $this->argument =& $argument;
  $this
    ->unpackOptions($this->options, $options);
}