drupal/core/modules/translation/tests/translation_test.module

16 lines
236 B
Plaintext

<?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();
}