SectionStorageManager.php in Drupal 9
File
core/modules/layout_builder/src/SectionStorage/SectionStorageManager.php
View source
<?php
namespace Drupal\layout_builder\SectionStorage;
use Drupal\Component\Plugin\Exception\ContextException;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Cache\RefinableCacheableDependencyInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Plugin\Context\ContextHandlerInterface;
use Drupal\Core\Plugin\DefaultPluginManager;
use Drupal\layout_builder\Annotation\SectionStorage;
use Drupal\layout_builder\SectionStorageInterface;
class SectionStorageManager extends DefaultPluginManager implements SectionStorageManagerInterface {
protected $contextHandler;
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler, ContextHandlerInterface $context_handler) {
parent::__construct('Plugin/SectionStorage', $namespaces, $module_handler, SectionStorageInterface::class, SectionStorage::class);
$this->contextHandler = $context_handler;
$this
->alterInfo('layout_builder_section_storage');
$this
->setCacheBackend($cache_backend, 'layout_builder_section_storage_plugins');
}
protected function findDefinitions() {
$definitions = parent::findDefinitions();
$weights = array_map(function (SectionStorageDefinition $definition) {
return $definition
->getWeight();
}, $definitions);
$ids = array_keys($definitions);
array_multisort($weights, $ids, $definitions);
return $definitions;
}
public function load($type, array $contexts = []) {
$plugin = $this
->loadEmpty($type);
try {
$this->contextHandler
->applyContextMapping($plugin, $contexts);
} catch (ContextException $e) {
return NULL;
}
return $plugin;
}
public function findByContext(array $contexts, RefinableCacheableDependencyInterface $cacheability) {
$storage_types = array_keys($this->contextHandler
->filterPluginDefinitionsByContexts($contexts, $this
->getDefinitions()));
$cacheability
->addCacheableDependency($this);
foreach ($storage_types as $type) {
$plugin = $this
->load($type, $contexts);
if ($plugin && $plugin
->isApplicable($cacheability)) {
return $plugin;
}
}
return NULL;
}
public function loadEmpty($type) {
return $this
->createInstance($type);
}
}