Same filename and directory in other branches
  1. 8.9.x core/modules/system/tests/modules/entity_test/src/Entity/EntityTestAdminRoutes.php
  2. 9 core/modules/system/tests/modules/entity_test/src/Entity/EntityTestAdminRoutes.php

Namespace

Drupal\entity_test\Entity

File

core/modules/system/tests/modules/entity_test/src/Entity/EntityTestAdminRoutes.php
View source
<?php

namespace Drupal\entity_test\Entity;


/**
 * Defines a test entity type with administrative routes.
 *
 * @ContentEntityType(
 *   id = "entity_test_admin_routes",
 *   label = @Translation("Test entity - admin routes"),
 *   handlers = {
 *     "view_builder" = "Drupal\entity_test\EntityTestViewBuilder",
 *     "access" = "Drupal\entity_test\EntityTestAccessControlHandler",
 *     "form" = {
 *       "default" = "Drupal\entity_test\EntityTestForm",
 *       "delete" = "Drupal\entity_test\EntityTestDeleteForm"
 *     },
 *     "views_data" = "Drupal\views\EntityViewsData",
 *     "route_provider" = {
 *       "html" = "Drupal\Core\Entity\Routing\AdminHtmlRouteProvider",
 *     },
 *   },
 *   base_table = "entity_test_admin_routes",
 *   data_table = "entity_test_admin_routes_property_data",
 *   admin_permission = "administer entity_test content",
 *   translatable = TRUE,
 *   entity_keys = {
 *     "id" = "id",
 *     "uuid" = "uuid",
 *     "bundle" = "type",
 *     "label" = "name",
 *     "langcode" = "langcode",
 *   },
 *   links = {
 *     "canonical" = "/entity_test_admin_routes/manage/{entity_test_admin_routes}",
 *     "edit-form" = "/entity_test_admin_routes/manage/{entity_test_admin_routes}/edit",
 *     "delete-form" = "/entity_test/delete/entity_test_admin_routes/{entity_test_admin_routes}",
 *   },
 * )
 */
class EntityTestAdminRoutes extends EntityTest {

}

Classes

Namesort descending Description
EntityTestAdminRoutes Defines a test entity type with administrative routes.