_trigger_taxonomy

Versions
mediamosa-21
_trigger_taxonomy($hook, $array)

Calls action functions for taxonomy triggers.

Parameters

$hook Hook to trigger actions for taxonomy_term_insert(), taxonomy_term_update(), and taxonomy_term_delete().

$array Item on which operation is being performed, either a term or form values.

Code

modules/trigger/trigger.module, line 572

<?php
function _trigger_taxonomy($hook, $array) {
  $aids = trigger_get_assigned_actions($hook);
  $context = array(
    'group' => 'taxonomy',
    'hook' => $hook
  );
  actions_do(array_keys($aids), (object) $array, $context);
}
?>