StaticDiscovery.php

Same filename and directory in other branches
  1. 11.x core/lib/Drupal/Component/Plugin/Discovery/StaticDiscovery.php
  2. 10 core/lib/Drupal/Component/Plugin/Discovery/StaticDiscovery.php
  3. 8.9.x core/lib/Drupal/Component/Plugin/Discovery/StaticDiscovery.php

Namespace

Drupal\Component\Plugin\Discovery

File

core/lib/Drupal/Component/Plugin/Discovery/StaticDiscovery.php

View source
<?php

namespace Drupal\Component\Plugin\Discovery;


/**
 * Allows plugin definitions to be manually registered.
 */
class StaticDiscovery implements DiscoveryInterface {
  use DiscoveryCachedTrait;
  
  /**
   * {@inheritdoc}
   */
  public function getDefinitions() {
    if (!$this->definitions) {
      $this->definitions = [];
    }
    return $this->definitions;
  }
  
  /**
   * Sets a plugin definition.
   */
  public function setDefinition($plugin, $definition) {
    $this->definitions[$plugin] = $definition;
  }
  
  /**
   * Deletes a plugin definition.
   */
  public function deleteDefinition($plugin) {
    unset($this->definitions[$plugin]);
  }

}

Classes

Title Deprecated Summary
StaticDiscovery Allows plugin definitions to be manually registered.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.