You are here

function _auto_expire_is_expiring_node in Auto Expire 7

Same name and namespace in other branches
  1. 5 auto_expire.module \_auto_expire_is_expiring_node()

Retrieves the stored variable for the type of the given node.

Parameters

$node:

Return value

null

1 call to _auto_expire_is_expiring_node()
_auto_expire_can_user_extend in ./auto_expire.module
Determines if the user can extend expiry.

File

./auto_expire.module, line 84

Code

function _auto_expire_is_expiring_node($node) {
  return variable_get(AUTO_EXPIRE_NODE_TYPE . $node->type . '_e', 0);
}