EntityTestConstraints.php in Zircon Profile 8.0
Same filename and directory in other branches
Namespace
Drupal\entity_test\EntityFile
core/modules/system/tests/modules/entity_test/src/Entity/EntityTestConstraints.phpView source
<?php
/**
* @file
* Contains \Drupal\entity_test\Entity\EntityTestConstraints.
*/
namespace Drupal\entity_test\Entity;
use Drupal\Core\Entity\EntityChangedTrait;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\Core\Field\BaseFieldDefinition;
/**
* Defines a test class for testing the definition of entity level constraints.
*
* @ContentEntityType(
* id = "entity_test_constraints",
* label = @Translation("Test entity constraints"),
* entity_keys = {
* "id" = "id",
* "uuid" = "uuid",
* "bundle" = "type",
* "label" = "name"
* },
* base_table = "entity_test_constraints",
* persistent_cache = FALSE,
* constraints = {
* "NotNull" = {}
* }
* )
*/
class EntityTestConstraints extends EntityTest implements EntityChangedInterface {
use EntityChangedTrait;
/**
* {@inheritdoc}
*/
public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
$fields = parent::baseFieldDefinitions($entity_type);
$fields['changed'] = BaseFieldDefinition::create('changed')
->setLabel(t('Changed'));
return $fields;
}
}
Classes
Name | Description |
---|---|
EntityTestConstraints | Defines a test class for testing the definition of entity level constraints. |