You are here

function node_expire_node_validate in Node expire 8

Same name and namespace in other branches
  1. 7.2 node_expire.module \node_expire_node_validate()
  2. 7 node_expire.module \node_expire_node_validate()

Implements hook_node_validate().

File

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

Code

function node_expire_node_validate(\Drupal\node\NodeInterface $node) {

  // Only deal with node types that have the Node expire feature enabled.
  // @FIXME
  // Could not extract the default value because it is either indeterminate, or
  // not scalar. You'll need to provide a default value in
  // config/install/node_expire.settings.yml and config/schema/node_expire.schema.yml.
  $ntypes = \Drupal::config('node_expire.settings')
    ->get('node_expire_ntypes');
  if (!isset($ntypes[$node->type])) {
    return;
  }
  if (!($ntype = $ntypes[$node->type])) {
    return;
  }
  module_load_include('nodeapi.inc', 'node_expire');
  _node_expire_node_validate($ntype, $node);
}