EntitySerializedField.php

Same filename in other branches
  1. 9 core/modules/system/tests/modules/entity_test/src/Entity/EntitySerializedField.php
  2. 8.9.x core/modules/system/tests/modules/entity_test/src/Entity/EntitySerializedField.php
  3. 10 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

declare (strict_types=1);
namespace Drupal\entity_test\Entity;

use Drupal\Core\Entity\Attribute\ContentEntityType;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Field\BaseFieldDefinition;

/**
 * Defines a test class for testing fields with a serialized column.
 */
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

Title Deprecated Summary
EntitySerializedField Defines a test class for testing fields with a serialized column.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.