You are here

BlockManagerInterface.php in Drupal 10

Namespace

Drupal\Core\Block

File

core/lib/Drupal/Core/Block/BlockManagerInterface.php
View source
<?php

namespace Drupal\Core\Block;

use Drupal\Component\Plugin\CategorizingPluginManagerInterface;
use Drupal\Core\Plugin\Context\ContextAwarePluginManagerInterface;
use Drupal\Core\Plugin\FilteredPluginManagerInterface;

/**
 * Provides an interface for the discovery and instantiation of block plugins.
 */
interface BlockManagerInterface extends ContextAwarePluginManagerInterface, CategorizingPluginManagerInterface, FilteredPluginManagerInterface {

}

Interfaces

Namesort descending Description
BlockManagerInterface Provides an interface for the discovery and instantiation of block plugins.