translation_test.module

Mock module for content translation tests.

File

drupal/core/modules/translation/tests/translation_test.module
View source
<?php

/**
 * @file
 * Mock module for content translation tests.
 */
use Drupal\Core\Entity\EntityInterface;

/**
 * Implements hook_node_insert().
 */
function translation_test_node_insert(EntityInterface $node) {
  $node
    ->save();
}

Functions