BlockManagerInterface.php 459 B

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