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

Namespace

Drupal\entity_test\Entity

File

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

namespace Drupal\entity_test\Entity;

use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Field\BaseFieldDefinition;

/**
 * Defines a test class for testing fields with a serialized column.
 *
 * @ContentEntityType(
 *   id = "entity_test_serialized_field",
 *   label = @Translation("Test serialized fields"),
 *   entity_keys = {
 *     "id" = "id",
 *     "uuid" = "uuid",
 *     "bundle" = "type",
 *     "label" = "name"
 *   },
 *   base_table = "entity_test_serialized_fields",
 *   persistent_cache = FALSE,
 *   serialized_field_property_names = {
 *     "serialized_long" = {
 *       "value"
 *     }
 *   }
 * )
 */
class EntitySerializedField extends EntityTest {

  /**
   * {@inheritdoc}
   */
  public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
    $fields = parent::baseFieldDefinitions($entity_type);
    $fields['serialized'] = BaseFieldDefinition::create('serialized_item_test')
      ->setLabel(t('Serialized'));
    $fields['serialized_text'] = BaseFieldDefinition::create('serialized_property_item_test')
      ->setLabel(t('Serialized text'));
    $fields['serialized_long'] = BaseFieldDefinition::create('string_long')
      ->setLabel(t('Serialized long string'));
    return $fields;
  }

}

Classes

Namesort descending Description
EntitySerializedField Defines a test class for testing fields with a serialized column.