BlockManagerInterface.php 372 B

12345678910111213
  1. <?php
  2. namespace Drupal\Core\Block;
  3. use Drupal\Component\Plugin\CategorizingPluginManagerInterface;
  4. use Drupal\Core\Plugin\Context\ContextAwarePluginManagerInterface;
  5. /**
  6. * Provides an interface for the discovery and instantiation of block plugins.
  7. */
  8. interface BlockManagerInterface extends ContextAwarePluginManagerInterface, CategorizingPluginManagerInterface {
  9. }