You are here

BlockManagerInterface.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/lib/Drupal/Core/Block/BlockManagerInterface.php

Namespace

Drupal\Core\Block

File

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

/**
 * @file
 * Contains \Drupal\Core\Block\BlockManagerInterface.
 */
namespace Drupal\Core\Block;

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

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

}

Interfaces

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