You are here

organigrams.api.php in Organigrams 8.2

Hooks and documentation related to organigrams module.

File

organigrams.api.php
View source
<?php

/**
 * @file
 * Hooks and documentation related to organigrams module.
 */

/**
 * @addtogroup hooks
 * @{
 */

/**
 * Alter the hierarchical taxonomy term tree.
 *
 * @param array $items
 *   The array of taxonomy terms.
 */
function hook_organigrams_taxonomy_term_tree_alter(array &$items) {
}

/**
 * Alter the markup of a taxonomy term.
 *
 * @param string $markup
 *   Contains rendered html.
 * @param object $object
 *   Contains a taxonomy term.
 */
function hook_organigrams_taxonomy_term_markup_alter(string &$markup, object $term) {
}

/**
 * @} End of "addtogroup hooks".
 */

Functions

Namesort descending Description
hook_organigrams_taxonomy_term_markup_alter Alter the markup of a taxonomy term.
hook_organigrams_taxonomy_term_tree_alter Alter the hierarchical taxonomy term tree.