Same name and namespace in other branches
  1. 8.9.x core/modules/system/tests/modules/entity_test/src/Entity/EntityTestBaseFieldDisplay.php \Drupal\entity_test\Entity\EntityTestBaseFieldDisplay
  2. 9 core/modules/system/tests/modules/entity_test/src/Entity/EntityTestBaseFieldDisplay.php \Drupal\entity_test\Entity\EntityTestBaseFieldDisplay

Defines a test entity class for base fields display.

Plugin annotation


@ContentEntityType(
  id = "entity_test_base_field_display",
  label = @Translation("Test entity - base field display"),
  handlers = {
    "access" = "Drupal\entity_test\EntityTestAccessControlHandler",
    "form" = {
      "default" = "Drupal\entity_test\EntityTestForm"
    },
    "route_provider" = {
      "html" = "Drupal\Core\Entity\Routing\DefaultHtmlRouteProvider",
    },
  },
  base_table = "entity_test_base_field_display",
  admin_permission = "administer entity_test content",
  entity_keys = {
    "id" = "id",
    "label" = "name",
    "uuid" = "uuid",
    "bundle" = "type",
    "langcode" = "langcode",
  },
  links = {
    "canonical" = "/entity_test_base_field_display/{entity_test_base_field_display}/edit",
    "add-form" = "/entity_test_base_field_display/add",
    "edit-form" = "/entity_test_base_field_display/manage/{entity_test_base_field_display}",
    "delete-form" = "/entity_test/delete/entity_test_base_field_display/{entity_test_base_field_display}/edit",
  },
  field_ui_base_route = "entity.entity_test_base_field_display.admin_form",
)

Hierarchy

Expanded class hierarchy of EntityTestBaseFieldDisplay

1 file declares its use of EntityTestBaseFieldDisplay
LayoutSectionItemListTest.php in core/modules/layout_builder/tests/src/Kernel/LayoutSectionItemListTest.php

File

core/modules/system/tests/modules/entity_test/src/Entity/EntityTestBaseFieldDisplay.php, line 42

Namespace

Drupal\entity_test\Entity
View source
class EntityTestBaseFieldDisplay extends EntityTest {

  /**
   * {@inheritdoc}
   */
  public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
    $fields = parent::baseFieldDefinitions($entity_type);
    $fields['test_no_display'] = BaseFieldDefinition::create('text')
      ->setLabel(t('Field with no display'));
    $fields['test_display_configurable'] = BaseFieldDefinition::create('text')
      ->setLabel(t('Field with configurable display'))
      ->setDisplayOptions('view', [
      'type' => 'text_default',
      'weight' => 10,
    ])
      ->setDisplayConfigurable('view', TRUE)
      ->setDisplayOptions('form', [
      'type' => 'text_textfield',
      'weight' => 10,
    ])
      ->setDisplayConfigurable('form', TRUE);
    $fields['test_display_non_configurable'] = BaseFieldDefinition::create('text')
      ->setLabel(t('Field with non-configurable display'))
      ->setDisplayOptions('view', [
      'type' => 'text_default',
      'weight' => 11,
    ])
      ->setDisplayOptions('form', [
      'type' => 'text_textfield',
      'weight' => 11,
    ]);
    $fields['test_display_multiple'] = BaseFieldDefinition::create('text')
      ->setLabel(t('A field with multiple values'))
      ->setCardinality(FieldStorageDefinition::CARDINALITY_UNLIMITED)
      ->setDisplayOptions('view', [
      'type' => 'text_default',
      'weight' => 12,
    ])
      ->setDisplayOptions('form', [
      'type' => 'text_textfield',
      'weight' => 12,
    ]);
    return $fields;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
EntityTest::getEntityKey public function
EntityTest::getName public function Returns the name.
EntityTest::getOwner public function Returns the entity owner's user entity. Overrides EntityOwnerInterface::getOwner
EntityTest::getOwnerId public function Returns the entity owner's user ID. Overrides EntityOwnerInterface::getOwnerId
EntityTest::preCreate public static function 1
EntityTest::setName public function Sets the name.
EntityTest::setOwner public function Sets the entity owner's user entity. Overrides EntityOwnerInterface::setOwner
EntityTest::setOwnerId public function Sets the entity owner's user ID. Overrides EntityOwnerInterface::setOwnerId
EntityTestBaseFieldDisplay::baseFieldDefinitions public static function Provides base field definitions for an entity type. Overrides EntityTest::baseFieldDefinitions