class WizardManager

Hierarchy

Expanded class hierarchy of WizardManager

File

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

Namespace

Drupal\views\Plugin\Type
View source
class WizardManager extends PluginManagerBase {

  /**
   * Constructs a WizardManager object.
   */
  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',
    );
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PluginManagerBase::$defaults protected property A set of defaults to be referenced by $this->processDefinition() if additional processing of plugins is necessary or helpful for development purposes. 4
PluginManagerBase::$discovery protected property The object that discovers plugins managed by this manager.
PluginManagerBase::$factory protected property The object that instantiates plugins managed by this manager.
PluginManagerBase::$mapper protected property The object that returns the preconfigured plugin instance appropriate for a particular runtime condition.
PluginManagerBase::clearCachedDefinitions public function Implements \Drupal\Component\Plugin\Discovery\CachedDiscoveryInterface::clearCachedDefinitions(). Overrides CachedDiscoveryInterface::clearCachedDefinitions
PluginManagerBase::createInstance public function Implements Drupal\Component\Plugin\PluginManagerInterface::createInstance(). Overrides FactoryInterface::createInstance 1
PluginManagerBase::getDefinition public function Implements Drupal\Component\Plugin\PluginManagerInterface::getDefinition(). Overrides DiscoveryInterface::getDefinition 1
PluginManagerBase::getDefinitions public function Implements Drupal\Component\Plugin\PluginManagerInterface::getDefinitions(). Overrides DiscoveryInterface::getDefinitions 1
PluginManagerBase::getInstance public function Implements Drupal\Component\Plugin\PluginManagerInterface::getInstance(). Overrides MapperInterface::getInstance 3
PluginManagerBase::processDefinition public function Performs extra processing on plugin definitions. 2
WizardManager::__construct public function Constructs a WizardManager object.