cf303a26567e6039acfb7b8a52a886d1a8aa27f4
[yaffs-website] / web / core / lib / Drupal / Core / Entity / DynamicallyFieldableEntityStorageInterface.php
1 <?php
2
3 namespace Drupal\Core\Entity;
4
5 use Drupal\Core\Field\FieldDefinitionListenerInterface;
6 use Drupal\Core\Field\FieldStorageDefinitionListenerInterface;
7
8 /**
9  * A storage that supports entity types with dynamic field definitions.
10  *
11  * A storage that implements this interface can react to the entity type's field
12  * definitions changing, due to modules being installed or uninstalled, or via
13  * field UI, or via code changes to the entity class.
14  *
15  * For example, configurable fields defined and exposed by field.module.
16  */
17 interface DynamicallyFieldableEntityStorageInterface extends FieldableEntityStorageInterface, FieldStorageDefinitionListenerInterface, FieldDefinitionListenerInterface {
18
19 }