Block API in Drupal 10
Same name and namespace in other branches
- 8 core/modules/block/block.api.php \block_api
- 9 core/modules/block/block.api.php \block_api
Information about the classes and interfaces that make up the Block API.
Blocks are a combination of a configuration entity and a plugin. The configuration entity stores placement information (theme, region, weight) and any other configuration that is specific to the block. The block plugin does the work of rendering the block's content for display.
To define a block in a module you need to:
- Define a Block plugin by creating a new class that implements the \Drupal\Core\Block\BlockPluginInterface, in namespace Plugin\Block under your module namespace. For more information about creating plugins, see the Plugin API topic.
- Usually you will want to extend the \Drupal\Core\Block\BlockBase class, which provides a common configuration form and utility methods for getting and setting configuration in the block configuration entity.
- Block plugins use the annotations defined by \Drupal\Core\Block\Annotation\Block. See the Annotations topic for more information about annotations.
The Block API also makes use of Condition plugins, for conditional block placement. Condition plugins have interface \Drupal\Core\Condition\ConditionInterface, base class \Drupal\Core\Condition\ConditionPluginBase, and go in plugin namespace Plugin\Condition. Again, see the Plugin API and Annotations topics for details of how to create a plugin class and annotate it.
There are also several block-related hooks, which allow you to affect the content and access permissions for blocks:
Further information and examples:
- \Drupal\system\Plugin\Block\SystemPoweredByBlock provides a simple example of defining a block.
- \Drupal\user\Plugin\Condition\UserRole is a straightforward example of a block placement condition plugin.
- \Drupal\book\Plugin\Block\BookNavigationBlock is an example of a block with a custom configuration form.
- For a more in-depth discussion of the Block API, see https://www.drupal.org/developing/api/8/block_api.
- The Examples for Developers project also provides a Block example in https://www.drupal.org/project/examples.
File
- core/
modules/ block/ block.api.php, line 10 - Hooks provided by the Block module.
Functions
Name | Location | Description |
---|---|---|
hook_block_access |
core/ |
Control access to a block instance. |
hook_block_alter |
core/ |
Allow modules to alter the block plugin definitions. |
hook_block_build_alter |
core/ |
Alter the result of \Drupal\Core\Block\BlockBase::build(). |
hook_block_build_BASE_BLOCK_ID_alter |
core/ |
Provide a block plugin specific block_build alteration. |
hook_block_view_alter |
core/ |
Alter the result of \Drupal\Core\Block\BlockBase::build(). |
hook_block_view_BASE_BLOCK_ID_alter |
core/ |
Provide a block plugin specific block_view alteration. |
Classes
Interfaces
Name | Location | Description |
---|---|---|
BlockPluginInterface |
core/ |
Defines the required interface for all block plugins. |
MainContentBlockPluginInterface |
core/ |
The interface for "main page content" blocks. |
MessagesBlockPluginInterface |
core/ |
The interface for "messages" (#type => status_messages) blocks. |
TitleBlockPluginInterface |
core/ |
The interface for "title" blocks. |
Traits
Name | Location | Description |
---|---|---|
BlockPluginTrait |
core/ |
Provides the base implementation of a block plugin. |