Same filename in this branch
  1. 10 core/lib/Drupal/Core/Plugin/CachedDiscoveryClearer.php
  2. 10 core/lib/Drupal/Core/ProxyClass/Plugin/CachedDiscoveryClearer.php
Same filename and directory in other branches
  1. 8.9.x core/lib/Drupal/Core/Plugin/CachedDiscoveryClearer.php
  2. 9 core/lib/Drupal/Core/Plugin/CachedDiscoveryClearer.php

Namespace

Drupal\Core\Plugin

File

core/lib/Drupal/Core/Plugin/CachedDiscoveryClearer.php
View source
<?php

namespace Drupal\Core\Plugin;

use Drupal\Component\Plugin\Discovery\CachedDiscoveryInterface;

/**
 * Defines a class which is capable of clearing the cache on plugin managers.
 */
class CachedDiscoveryClearer implements CachedDiscoveryClearerInterface {

  /**
   * The stored discoveries.
   *
   * @var \Drupal\Component\Plugin\Discovery\CachedDiscoveryInterface[]
   */
  protected $cachedDiscoveries = [];

  /**
   * {@inheritdoc}
   */
  public function addCachedDiscovery(CachedDiscoveryInterface $cached_discovery) {
    $this->cachedDiscoveries[] = $cached_discovery;
  }

  /**
   * {@inheritdoc}
   */
  public function clearCachedDefinitions() {
    foreach ($this->cachedDiscoveries as $cached_discovery) {
      $cached_discovery
        ->clearCachedDefinitions();
    }
  }

}

Classes

Namesort descending Description
CachedDiscoveryClearer Defines a class which is capable of clearing the cache on plugin managers.