First commit

This commit is contained in:
Theodotos Andreou 2018-01-14 13:10:16 +00:00
commit c6e2478c40
13918 changed files with 2303184 additions and 0 deletions

View file

@ -0,0 +1,12 @@
name = "Content Translation Test"
description = "Support module for the content translation tests."
core = 7.x
package = Testing
version = VERSION
hidden = TRUE
; Information added by Drupal.org packaging script on 2017-06-21
version = "7.56"
project = "drupal"
datestamp = "1498069849"

View file

@ -0,0 +1,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');
}