summaryrefslogtreecommitdiff
path: root/modules/translation/tests/translation_test.module
blob: e3bb4b5ff7d8eb5f9f3007066107e614fa425118 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

/**
 * @file
 * Mock module for content translation tests.
 */

/**
 * Implements hook_node_insert().
 */
function translation_test_node_insert($node) {
  drupal_write_record('node', $node, 'nid');
}