node_expire.rules.inc in Node expire 7.2
Same filename and directory in other branches
Rules module integration.
File
node_expire.rules.incView source
<?php
/**
* @file
* Rules module integration.
*/
use Drupal\node_expire\Module\Hook\RulesHookHandler;
/**
* Implements hook_rules_action_info().
*
* @ingroup rules
*/
function node_expire_rules_action_info() {
return RulesHookHandler::hookRulesActionInfo();
}
/**
* Implements hook_rules_condition_info().
*
* @ingroup rules
*/
function node_expire_rules_condition_info() {
return RulesHookHandler::hookRulesConditionInfo();
}
/**
* Implements hook_rules_event_info().
*
* @ingroup rules
*/
function node_expire_rules_event_info() {
return RulesHookHandler::hookRulesEventInfo();
}
/**
* Checks if the node has the the "Expired" flag on.
*
* @param object $node
* The Node object.
*/
function node_expire_rules_expired_check($node) {
return !empty($node->expire) && $node->expire <= REQUEST_TIME && $node->expired == 1;
}
/**
* Checks lastnotify.
*
* Checks if the node has the the "Expired" flag on
* and lastnotify greater than or equal to 2 weeks.
*
* @param object $node
* The Node object.
*/
function node_expire_rules_expired_check_lastnotify($node) {
return !empty($node->expire) && $node->expire <= REQUEST_TIME && $node->expired == 1 && $node->lastnotify <= REQUEST_TIME - 14 * 24 * 60 * 60;
}
/**
* Checks lastnotify is set.
*
* Checks if the node has the the "Expired" flag on
* and lastnotify is set.
*
* @param object $node
* The Node object.
*/
function node_expire_rules_expired_check_lastnotify_is_set($node) {
return !empty($node->expire) && $node->expire <= time() && $node->expired == 1 && $node->lastnotify != 0;
}
/**
* Unsets the "Expired" flag on nodes.
*
* @param object $node
* The Node object with all node IDs
* that should unset the expired flag.
*/
function node_expire_unset_expired($node) {
$wrapper = entity_metadata_wrapper('node', $node);
$value = $wrapper
->value();
$value->expired = 0;
$value->lastnotify = 0;
$wrapper
->set($value);
$wrapper
->save();
}
/**
* Updates lastnotify on nodes.
*
* @param object $node
* The Node object with all node IDs
* that should update lastnotify.
*/
function node_expire_update_lastnotify($node) {
$wrapper = entity_metadata_wrapper('node', $node);
$value = $wrapper
->value();
$value->lastnotify = REQUEST_TIME;
$wrapper
->set($value);
$wrapper
->save();
}
Functions
Name | Description |
---|---|
node_expire_rules_action_info | Implements hook_rules_action_info(). |
node_expire_rules_condition_info | Implements hook_rules_condition_info(). |
node_expire_rules_event_info | Implements hook_rules_event_info(). |
node_expire_rules_expired_check | Checks if the node has the the "Expired" flag on. |
node_expire_rules_expired_check_lastnotify | Checks lastnotify. |
node_expire_rules_expired_check_lastnotify_is_set | Checks lastnotify is set. |
node_expire_unset_expired | Unsets the "Expired" flag on nodes. |
node_expire_update_lastnotify | Updates lastnotify on nodes. |