drupal/modules/node/tests/node_presave_test.module

19 lines
396 B
Plaintext

<?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.
}
}