first global commit

This commit is contained in:
2020-09-23 15:50:29 +02:00
commit 78adf3a099
6052 changed files with 1221183 additions and 0 deletions
@@ -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 2013-04-03
version = "7.22"
project = "drupal"
datestamp = "1365027012"
@@ -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');
}