Issue #2943209 by gabesullice, amateescu, Wim Leers: Mark at least one entity_test entity type as 'internal'

8.6.x
Alex Pott 2018-02-12 09:24:07 +00:00
parent 845ab36958
commit cb23750490
1 changed files with 7 additions and 2 deletions

View File

@ -8,12 +8,17 @@ namespace Drupal\entity_test\Entity;
* @ContentEntityType(
* id = "entity_test_no_label",
* label = @Translation("Entity Test without label"),
* internal = TRUE,
* persistent_cache = FALSE,
* base_table = "entity_test_no_label",
* handlers = {
* "access" = "Drupal\entity_test\EntityTestAccessControlHandler",
* },
* entity_keys = {
* "id" = "id",
* "bundle" = "type"
* }
* "uuid" = "uuid",
* "bundle" = "type",
* },
* )
*/
class EntityTestNoLabel extends EntityTest {