You are here

function node_expire_node_prepare in Node expire 7

Same name and namespace in other branches
  1. 7.2 node_expire.module \node_expire_node_prepare()

Implements hook_node_prepare().

File

./node_expire.module, line 172
Set a timer into your content, allowing you to perform customized actions.

Code

function node_expire_node_prepare($node) {

  // Only deal with node types that have the Node expire feature enabled.
  $ntypes = variable_get('node_expire_ntypes', array());
  if (!isset($ntypes[$node->type])) {
    return;
  }
  if (!($ntype = $ntypes[$node->type])) {
    return;
  }
  module_load_include('nodeapi.inc', 'node_expire');
  _node_expire_node_prepare($ntype, $node);
}