- 7 modules/translation/tests/translation_test.module
- 8 core/modules/translation/tests/translation_test.module
Mock module for content translation tests.
Functions
|
Name |
Description |
|---|---|
| translation_test_node_insert | Implements hook_node_insert(). |
File
modules/translation/tests/translation_test.moduleView source
- <?php
-
- /**
- * @file
- * Mock module for content translation tests.
- */
-
- /**
- * Implements hook_node_insert().
- */
- function translation_test_node_insert($node) {
- drupal_write_record('node', $node, 'nid');
- }
-