constant NODE_NEW_LIMIT in Drupal 5
Same name and namespace in other branches
- 4 modules/node.module \NODE_NEW_LIMIT
- 6 modules/node/node.module \NODE_NEW_LIMIT
- 7 modules/node/node.module \NODE_NEW_LIMIT
@file The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.
6 uses of NODE_NEW_LIMIT
- comment_num_new in modules/
comment/ comment.module - get number of new comments for current user and specified node
- node_cron in modules/
node/ node.module - Implementation of hook_cron().
- node_mark in modules/
node/ node.module - Decide on the type of marker to be displayed for a given node.
- _forum_new in modules/
forum/ forum.module - Finds the first unread node for a given forum.
- _forum_topics_unread in modules/
forum/ forum.module - Calculate the number of nodes the user has not yet read and are newer than NODE_NEW_LIMIT.
File
- modules/
node/ node.module, line 9 - The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.
Code
define('NODE_NEW_LIMIT', time() - 30 * 24 * 60 * 60);