FieldStorageDefinition.php
Same filename and directory in other branches
- 11.x core/modules/system/tests/modules/entity_test/src/FieldStorageDefinition.php
- 10 core/modules/system/tests/modules/entity_test/src/FieldStorageDefinition.php
- 9 core/modules/system/tests/modules/entity_test/src/FieldStorageDefinition.php
- 8.9.x core/modules/system/tests/modules/entity_test/src/FieldStorageDefinition.php
Namespace
Drupal\entity_testFile
-
core/
modules/ system/ tests/ modules/ entity_test/ src/ FieldStorageDefinition.php
View source
<?php
declare (strict_types=1);
namespace Drupal\entity_test;
use Drupal\Core\Field\BaseFieldDefinition;
/**
* A custom field storage definition class.
*
* For convenience we extend from BaseFieldDefinition although this should not
* implement FieldDefinitionInterface.
*
* @todo Provide and make use of a proper FieldStorageDefinition class instead:
* https://www.drupal.org/node/2280639.
*/
class FieldStorageDefinition extends BaseFieldDefinition {
/**
* {@inheritdoc}
*/
public function isBaseField() {
return FALSE;
}
}
Classes
| Title | Deprecated | Summary |
|---|---|---|
| FieldStorageDefinition | A custom field storage definition class. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.