Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / entity / tests / modules / entity_module_test / src / Entity / EnhancedEntity.php
diff --git a/web/modules/contrib/entity/tests/modules/entity_module_test/src/Entity/EnhancedEntity.php b/web/modules/contrib/entity/tests/modules/entity_module_test/src/Entity/EnhancedEntity.php
deleted file mode 100644 (file)
index f9f7b9b..0000000
+++ /dev/null
@@ -1,89 +0,0 @@
-<?php
-
-namespace Drupal\entity_module_test\Entity;
-
-use Drupal\Core\Entity\EntityTypeInterface;
-use Drupal\Core\Field\BaseFieldDefinition;
-use Drupal\entity\Revision\RevisionableContentEntityBase;
-
-/**
- * Provides a test entity which uses all the capabilities of entity module.
- *
- * @ContentEntityType(
- *   id = "entity_test_enhanced",
- *   label = @Translation("Enhanced entity"),
- *   label_collection = @Translation("Enhanced entities"),
- *   label_singular = @Translation("enhanced entity"),
- *   label_plural = @Translation("enhanced entities"),
- *   label_count = @PluralTranslation(
- *     singular = "@count enhanced entity",
- *     plural = "@count enhanced entities",
- *   ),
- *   handlers = {
- *     "storage" = "\Drupal\Core\Entity\Sql\SqlContentEntityStorage",
- *     "access" = "\Drupal\Core\Entity\EntityAccessControlHandler",
- *     "permission_provider" = "\Drupal\entity\EntityPermissionProvider",
- *     "form" = {
- *       "add" = "\Drupal\entity\Form\RevisionableContentEntityForm",
- *       "edit" = "\Drupal\entity\Form\RevisionableContentEntityForm",
- *       "delete" = "\Drupal\Core\Entity\EntityDeleteForm",
- *     },
- *     "route_provider" = {
- *       "html" = "\Drupal\entity\Routing\DefaultHtmlRouteProvider",
- *       "revision" = "\Drupal\entity\Routing\RevisionRouteProvider",
- *       "delete-multiple" = "\Drupal\entity\Routing\DeleteMultipleRouteProvider",
- *     },
- *     "local_action_provider" = {
- *       "collection" = "\Drupal\entity\Menu\EntityCollectionLocalActionProvider",
- *     },
- *     "list_builder" = "\Drupal\Core\Entity\EntityListBuilder",
- *   },
- *   base_table = "entity_test_enhanced",
- *   data_table = "entity_test_enhanced_field_data",
- *   revision_table = "entity_test_enhanced_revision",
- *   revision_data_table = "entity_test_enhanced_field_revision",
- *   translatable = TRUE,
- *   revisionable = TRUE,
- *   admin_permission = "administer entity_test_enhanced",
- *   permission_granularity = "bundle",
- *   entity_keys = {
- *     "id" = "id",
- *     "bundle" = "type",
- *     "revision" = "vid",
- *     "langcode" = "langcode",
- *   },
- *   links = {
- *     "add-page" = "/entity_test_enhanced/add",
- *     "add-form" = "/entity_test_enhanced/add/{type}",
- *     "edit-form" = "/entity_test_enhanced/{entity_test_enhanced}/edit",
- *     "canonical" = "/entity_test_enhanced/{entity_test_enhanced}",
- *     "collection" = "/entity_test_enhanced",
- *     "delete-multiple-form" = "/entity_test_enhanced/delete",
- *     "revision" = "/entity_test_enhanced/{entity_test_enhanced}/revisions/{entity_test_enhanced_revision}/view",
- *     "revision-revert-form" = "/entity_test_enhanced/{entity_test_enhanced}/revisions/{entity_test_enhanced_revision}/revert",
- *     "version-history" = "/entity_test_enhanced/{entity_test_enhanced}/revisions",
- *   },
- *   bundle_entity_type = "entity_test_enhanced_bundle",
- * )
- */
-class EnhancedEntity extends RevisionableContentEntityBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
-    $fields = parent::baseFieldDefinitions($entity_type);
-
-    $fields['name'] = BaseFieldDefinition::create('string')
-      ->setLabel('Name')
-      ->setRevisionable(TRUE)
-      ->setDisplayOptions('view', [
-        'label' => 'hidden',
-        'type' => 'string',
-        'weight' => -5,
-      ]);
-
-    return $fields;
-  }
-
-}