You are here

EntityTestTranslatableUISkip.php in Drupal 10

File

core/modules/content_translation/tests/modules/content_translation_test/src/Entity/EntityTestTranslatableUISkip.php
View source
<?php

namespace Drupal\content_translation_test\Entity;

use Drupal\entity_test\Entity\EntityTest;

/**
 * Defines the test entity class.
 *
 * @ContentEntityType(
 *   id = "entity_test_translatable_UI_skip",
 *   label = @Translation("Test entity - Translatable skip UI check"),
 *   base_table = "entity_test_mul",
 *   data_table = "entity_test_mul_property_data",
 *   entity_keys = {
 *     "id" = "id",
 *     "uuid" = "uuid",
 *     "bundle" = "type",
 *     "label" = "name",
 *     "langcode" = "langcode",
 *   },
 *   translatable = TRUE,
 *   content_translation_ui_skip = TRUE,
 * )
 */
class EntityTestTranslatableUISkip extends EntityTest {

}

Classes

Namesort descending Description
EntityTestTranslatableUISkip Defines the test entity class.