first import

Signed-off-by: bachy <git@g-u-i.net>
This commit is contained in:
bachy
2012-10-05 13:50:00 +02:00
commit 95098773d5
1051 changed files with 309382 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 2012-08-01
version = "7.15"
project = "drupal"
datestamp = "1343839327"

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');
}