You are here

function taxonomy_edge_taxonomy_term_update in Taxonomy Edge 7

Same name and namespace in other branches
  1. 8 taxonomy_edge.module \taxonomy_edge_taxonomy_term_update()
  2. 6 taxonomy_edge.module \taxonomy_edge_taxonomy_term_update()
  3. 7.2 taxonomy_edge.module \taxonomy_edge_taxonomy_term_update()

Implements hook_taxonomy_term_update().

File

./taxonomy_edge.module, line 259
Optimization of taxonomy data model for SQL performance.

Code

function taxonomy_edge_taxonomy_term_update($term) {
  if (taxonomy_edge_is_build_realtime($term->vid)) {
    return _taxonomy_edge_taxonomy_term_update($term);
  }
  else {
    _taxonomy_edge_taxonomy_term_queue($term, 'update');
  }
}