function node_expire_rules_expired_check in Node expire 7.2
Same name and namespace in other branches
- 8 node_expire.rules.inc \node_expire_rules_expired_check()
- 6.2 node_expire.rules.inc \node_expire_rules_expired_check()
- 7 node_expire.rules.inc \node_expire_rules_expired_check()
Checks if the node has the the "Expired" flag on.
Parameters
object $node: The Node object.
File
- ./
node_expire.rules.inc, line 43 - Rules module integration.
Code
function node_expire_rules_expired_check($node) {
return !empty($node->expire) && $node->expire <= REQUEST_TIME && $node->expired == 1;
}