EntityTestTranslatableUISkip.php in Drupal 8
Namespace
Drupal\content_translation_test\EntityFile
core/modules/content_translation/tests/modules/content_translation_test/src/Entity/EntityTestTranslatableUISkip.phpView 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
Name | Description |
---|---|
EntityTestTranslatableUISkip | Defines the test entity class. |