14 lines
207 B
Plaintext
14 lines
207 B
Plaintext
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Mock module for content translation tests.
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_node_insert().
|
|
*/
|
|
function translation_test_node_insert($node) {
|
|
drupal_write_record('node', $node, 'nid');
|
|
}
|