From d20a9ee9641cf84fca822ff209b6b89b0f5a48a7 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 10 Aug 2011 16:51:27 -0400 Subject: - Patch #1196318 by James_Stallings: node_last_changed() is lacking doc. --- modules/node/node.module | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'modules') diff --git a/modules/node/node.module b/modules/node/node.module index 9a5ca154f..6f750b4d2 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -2075,6 +2075,15 @@ function node_page_title($node) { return $node->title; } +/** + * Finds the last time a node was changed. + * + * @param $nid + * The ID of a node. + * + * @return + * A unix timestamp indicating the last time the node was changed. + */ function node_last_changed($nid) { return db_query('SELECT changed FROM {node} WHERE nid = :nid', array(':nid' => $nid))->fetch()->changed; } -- cgit v1.2.3