Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / system / tests / modules / entity_test / src / Entity / EntityTestNoUuid.php
1 <?php
2
3 namespace Drupal\entity_test\Entity;
4
5 /**
6  * Test entity class with revisions but without UUIDs.
7  *
8  * @ContentEntityType(
9  *   id = "entity_test_no_uuid",
10  *   label = @Translation("Test entity without UUID"),
11  *   handlers = {
12  *     "access" = "Drupal\entity_test\EntityTestAccessControlHandler",
13  *   },
14  *   base_table = "entity_test_no_uuid",
15  *   revision_table = "entity_test_no_uuid_revision",
16  *   admin_permission = "administer entity_test content",
17  *   persistent_cache = FALSE,
18  *   entity_keys = {
19  *     "id" = "id",
20  *     "revision" = "vid",
21  *     "bundle" = "type",
22  *     "label" = "name",
23  *     "langcode" = "langcode",
24  *   },
25  * )
26  */
27 class EntityTestNoUuid extends EntityTest {
28
29 }