You are here

function ess_test_install in Entity Share 8

Implements hook_install().

File

modules/entity_share_server/tests/modules/ess_test/ess_test.install, line 11
Installation hooks for ess_test module.

Code

function ess_test_install() {

  // Apply schema updates because of the multilingual activation.
  $manager = \Drupal::entityDefinitionUpdateManager();
  if ($manager
    ->needsUpdates()) {
    $manager
      ->applyUpdates();
  }
}