class DevelEntityTestEdit

Same name and namespace in other branches
  1. 5.x tests/modules/devel_entity_test/src/Entity/DevelEntityTestEdit.php \Drupal\devel_entity_test\Entity\DevelEntityTestEdit

Defines the test entity class.

Plugin annotation


@ContentEntityType(
  id = "devel_entity_test_edit",
  label = @Translation("Devel test entity with edit form link"),
  handlers = {
    "list_builder" = "Drupal\entity_test\EntityTestListBuilder",
    "view_builder" = "Drupal\entity_test\EntityTestViewBuilder",
    "access" = "Drupal\entity_test\EntityTestAccessControlHandler",
    "form" = {
      "default" = "Drupal\entity_test\EntityTestForm",
      "delete" = "Drupal\entity_test\EntityTestDeleteForm"
    },
    "route_provider" = {
      "html" = "Drupal\Core\Entity\Routing\DefaultHtmlRouteProvider",
    },
    "translation" = "Drupal\content_translation\ContentTranslationHandler",
    "views_data" = "Drupal\entity_test\EntityTestViewsData"
  },
  base_table = "devel_entity_test_edit",
  persistent_cache = FALSE,
  entity_keys = {
    "id" = "id",
    "uuid" = "uuid",
    "bundle" = "type",
    "label" = "name",
    "langcode" = "langcode",
  },
  links = {
    "edit-form" = "/devel_entity_test_edit/manage/{devel_entity_test_edit}",
  },
  field_ui_base_route = "entity.entity_test.admin_form",
)

Hierarchy

Expanded class hierarchy of DevelEntityTestEdit

File

tests/modules/devel_entity_test/src/Entity/DevelEntityTestEdit.php, line 42

Namespace

Drupal\devel_entity_test\Entity
View source
class DevelEntityTestEdit extends EntityTest {

}