public function WizardManager::__construct

Constructs a WizardManager object.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/Type/WizardManager.php, line 23
Definition of Drupal\views\Plugin\Type\WizardManager.

Class

WizardManager

Namespace

Drupal\views\Plugin\Type

Code

public function __construct() {
  $this->discovery = new AnnotatedClassDiscovery('views', 'wizard');
  $this->discovery = new AlterDecorator($this->discovery, 'views_plugins_wizard');
  $this->discovery = new ProcessDecorator($this->discovery, array(
    $this,
    'processDefinition',
  ));
  $this->discovery = new DerivativeDiscoveryDecorator($this->discovery);
  $this->discovery = new CacheDecorator($this->discovery, 'views:wizard', 'views_info');
  $this->factory = new DefaultFactory($this);
  $this->defaults = array(
    'module' => 'views',
  );
}