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

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

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