You are here

StaticDiscovery.php in Drupal 8

Same filename and directory in other branches
  1. 9 core/lib/Drupal/Component/Plugin/Discovery/StaticDiscovery.php

File

core/lib/Drupal/Component/Plugin/Discovery/StaticDiscovery.php
View source
<?php

namespace Drupal\Component\Plugin\Discovery;


/**
 * A discovery mechanism that allows plugin definitions to be manually
 * registered rather than actively discovered.
 */
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

Namesort descending Description
StaticDiscovery A discovery mechanism that allows plugin definitions to be manually registered rather than actively discovered.