
| Current Path : /var/www/html/ift/web/core/modules/system/tests/modules/entity_test/src/Entity/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/ift/web/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestNoId.php |
<?php
namespace Drupal\entity_test\Entity;
/**
* Test entity class.
*
* @ContentEntityType(
* id = "entity_test_no_id",
* label = @Translation("Entity Test without id"),
* handlers = {
* "storage" = "Drupal\Core\Entity\ContentEntityNullStorage",
* },
* entity_keys = {
* "bundle" = "type",
* },
* admin_permission = "administer entity_test content",
* field_ui_base_route = "entity.entity_test_no_id.admin_form",
* links = {
* "add-form" = "/entity_test_no_id/add",
* },
* )
*/
class EntityTestNoId extends EntityTest {
}