rules for php 7.4 which is on ubuntu 20. May also need this version of rules for php7.2. Base off of Development version: 7.x-2.x-dev updated 15 Mar 2020 at 21:52 UTC
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

225 lines
5.7 KiB

<?php
/**
* @file
* Invokes events on behalf core modules.
*
* For non-core modules, the code to invoke events should be found in the
* module providing rules integration.
*
* @addtogroup rules
*
* @{
*/
/**
* Gets an unchanged entity that doesn't contain any recent changes.
*
* This handler assumes the name of the variable for the changed entity is the
* same as for the unchanged entity but without the trailing "_unchanged"; e.g.,
* for the "node_unchanged" variable the handler assumes there is a "node"
* variable.
*/
function rules_events_entity_unchanged($arguments, $name, $info) {
// Cut of the trailing _unchanged.
$var_name = substr($name, 0, -10);
$entity = $arguments[$var_name];
if (isset($entity->original)) {
return $entity->original;
}
}
/*
* Generic entity events, used for core-entities for which we provide Rules
* integration only. We are implementing the generic-entity hooks instead of
* the entity-type specific hooks to ensure we come last.
* See https://www.drupal.org/node/1211946 for details.
*/
/**
* Implements hook_entity_view().
*/
function rules_entity_view($entity, $type, $view_mode, $langcode) {
switch ($type) {
case 'comment':
rules_invoke_event('comment_view--' . $entity->node_type, $entity, $view_mode);
rules_invoke_event('comment_view', $entity, $view_mode);
break;
case 'node':
rules_invoke_event('node_view--' . $entity->type, $entity, $view_mode);
rules_invoke_event('node_view', $entity, $view_mode);
break;
case 'user':
rules_invoke_event('user_view', $entity, $view_mode);
break;
}
}
/**
* Implements hook_entity_presave().
*/
function rules_entity_presave($entity, $type) {
switch ($type) {
case 'comment':
rules_invoke_event('comment_presave--' . $entity->node_type, $entity);
rules_invoke_event('comment_presave', $entity);
break;
case 'node':
rules_invoke_event('node_presave--' . $entity->type, $entity);
rules_invoke_event('node_presave', $entity);
break;
case 'taxonomy_term':
rules_invoke_event('taxonomy_term_presave--' . $entity->vocabulary_machine_name, $entity);
rules_invoke_event('taxonomy_term_presave', $entity);
break;
case 'taxonomy_vocabulary':
case 'user':
rules_invoke_event($type . '_presave', $entity);
break;
}
}
/**
* Implements hook_entity_update().
*/
function rules_entity_update($entity, $type) {
switch ($type) {
case 'comment':
rules_invoke_event('comment_update--' . $entity->node_type, $entity);
rules_invoke_event('comment_update', $entity);
break;
case 'node':
rules_invoke_event('node_update--' . $entity->type, $entity);
rules_invoke_event('node_update', $entity);
break;
case 'taxonomy_term':
rules_invoke_event('taxonomy_term_update--' . $entity->vocabulary_machine_name, $entity);
rules_invoke_event('taxonomy_term_update', $entity);
break;
case 'taxonomy_vocabulary':
case 'user':
rules_invoke_event($type . '_update', $entity);
break;
}
}
/**
* Implements hook_entity_insert().
*/
function rules_entity_insert($entity, $type) {
switch ($type) {
case 'comment':
rules_invoke_event('comment_insert--' . $entity->node_type, $entity);
rules_invoke_event('comment_insert', $entity);
break;
case 'node':
rules_invoke_event('node_insert--' . $entity->type, $entity);
rules_invoke_event('node_insert', $entity);
break;
case 'taxonomy_term':
rules_invoke_event('taxonomy_term_insert--' . $entity->vocabulary_machine_name, $entity);
rules_invoke_event('taxonomy_term_insert', $entity);
break;
case 'taxonomy_vocabulary':
case 'user':
rules_invoke_event($type . '_insert', $entity);
break;
}
}
/**
* Implements hook_entity_delete().
*/
function rules_entity_delete($entity, $type) {
switch ($type) {
case 'comment':
rules_invoke_event('comment_delete--' . $entity->node_type, $entity);
rules_invoke_event('comment_delete', $entity);
break;
case 'node':
rules_invoke_event('node_delete--' . $entity->type, $entity);
rules_invoke_event('node_delete', $entity);
break;
case 'taxonomy_term':
rules_invoke_event('taxonomy_term_delete--' . $entity->vocabulary_machine_name, $entity);
rules_invoke_event('taxonomy_term_delete', $entity);
break;
case 'taxonomy_vocabulary':
case 'user':
rules_invoke_event($type . '_delete', $entity);
break;
}
}
/**
* Implements hook_user_login().
*/
function rules_user_login(&$edit, $account) {
rules_invoke_event('user_login', $account);
}
/**
* Implements hook_user_logout().
*/
function rules_user_logout($account) {
rules_invoke_event('user_logout', $account);
}
/*
* System events.
*
* Note that rules_init() is the main module file is used to
* invoke the init event.
*/
/**
* Implements hook_cron().
*/
function rules_cron() {
rules_invoke_event('cron');
}
/**
* Implements hook_watchdog().
*/
function rules_watchdog($log_entry) {
rules_invoke_event('watchdog', $log_entry);
}
/**
* Getter callback for the log entry message property.
*/
function rules_system_log_get_message($log_entry) {
return t($log_entry['message'], (array) $log_entry['variables']);
}
/**
* Gets all view modes of an entity for an entity_view event.
*/
function rules_get_entity_view_modes($name, $var_info) {
// Read the entity type from a special key out of the variable info.
$entity_type = $var_info['options list entity type'];
$info = entity_get_info($entity_type);
foreach ($info['view modes'] as $mode => $mode_info) {
$modes[$mode] = $mode_info['label'];
}
return $modes;
}
/**
* @} End of "addtogroup rules"
*/