You are here

ess_test.install in Entity Share 8

Installation hooks for ess_test module.

File

modules/entity_share_server/tests/modules/ess_test/ess_test.install
View source
<?php

/**
 * @file
 * Installation hooks for ess_test module.
 */

/**
 * Implements hook_install().
 */
function ess_test_install() {

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

Functions

Namesort descending Description
ess_test_install Implements hook_install().