You are here

protected function EntityDefinitionTestTrait::updateEntityTypeToNotTranslatable in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/src/Tests/Entity/EntityDefinitionTestTrait.php \Drupal\system\Tests\Entity\EntityDefinitionTestTrait::updateEntityTypeToNotTranslatable()

Updates the 'entity_test_update' entity type to not translatable.

2 calls to EntityDefinitionTestTrait::updateEntityTypeToNotTranslatable()
ViewsEntitySchemaSubscriberIntegrationTest::testVariousTableUpdates in core/modules/views/src/Tests/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php
Tests a bunch possible entity definition table updates.
ViewsEntitySchemaSubscriberIntegrationTest::testVariousTableUpdatesForRevisionView in core/modules/views/src/Tests/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php
Tests some possible entity table updates for a revision view.

File

core/modules/system/src/Tests/Entity/EntityDefinitionTestTrait.php, line 81
Contains \Drupal\system\Tests\Entity\EntityDefinitionTestTrait.

Class

EntityDefinitionTestTrait
Provides some test methods used to update existing entity definitions.

Namespace

Drupal\system\Tests\Entity

Code

protected function updateEntityTypeToNotTranslatable() {
  $entity_type = clone $this->entityManager
    ->getDefinition('entity_test_update');
  $entity_type
    ->set('translatable', FALSE);
  $entity_type
    ->set('data_table', NULL);
  if ($entity_type
    ->isRevisionable()) {
    $entity_type
      ->set('revision_data_table', NULL);
  }
  $this->state
    ->set('entity_test_update.entity_type', $entity_type);
}