BlockContentTypeInterface.php in Drupal 9
Same filename and directory in other branches
Namespace
Drupal\block_contentFile
core/modules/block_content/src/BlockContentTypeInterface.phpView source
<?php
namespace Drupal\block_content;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
use Drupal\Core\Entity\RevisionableEntityBundleInterface;
/**
* Provides an interface defining a custom block type entity.
*/
interface BlockContentTypeInterface extends ConfigEntityInterface, RevisionableEntityBundleInterface {
/**
* Returns the description of the block type.
*
* @return string
* The description of the type of this block.
*/
public function getDescription();
}
Interfaces
Name | Description |
---|---|
BlockContentTypeInterface | Provides an interface defining a custom block type entity. |