Skip to content
Snippets Groups Projects
Commit 35caf24c authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #986018 by fago: remove ununsed test files.

parent 1b859085
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
; $Id$
name = "Node module presave tests"
description = "Support module for hook_node_presave testing."
package = Testing
version = VERSION
core = 7.x
files[] = node_presave_test.module
hidden = TRUE
<?php
// $Id$
/**
* @file
* Dummy module implementing node related hooks to test API interaction with
* the Node module.
*/
/**
* Implements hook_node_presave().
*/
function node_presave_test_node_presave($node) {
if ($node->title == 'testing_node_presave') {
$node->created = 280299600; // Sun, 19 Nov 1978 05:00:00 GMT
$node->changed = 979534800; // Drupal 1.0 release.
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment