comparison core/lib/Drupal/Core/Block/BlockManagerInterface.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
2 2
3 namespace Drupal\Core\Block; 3 namespace Drupal\Core\Block;
4 4
5 use Drupal\Component\Plugin\CategorizingPluginManagerInterface; 5 use Drupal\Component\Plugin\CategorizingPluginManagerInterface;
6 use Drupal\Core\Plugin\Context\ContextAwarePluginManagerInterface; 6 use Drupal\Core\Plugin\Context\ContextAwarePluginManagerInterface;
7 use Drupal\Core\Plugin\FilteredPluginManagerInterface;
7 8
8 /** 9 /**
9 * Provides an interface for the discovery and instantiation of block plugins. 10 * Provides an interface for the discovery and instantiation of block plugins.
10 */ 11 */
11 interface BlockManagerInterface extends ContextAwarePluginManagerInterface, CategorizingPluginManagerInterface { 12 interface BlockManagerInterface extends ContextAwarePluginManagerInterface, CategorizingPluginManagerInterface, FilteredPluginManagerInterface {
12 13
13 } 14 }