function taxonomy_edge_cron in Taxonomy Edge 6
Same name and namespace in other branches
- 8 taxonomy_edge.module \taxonomy_edge_cron()
- 7.2 taxonomy_edge.module \taxonomy_edge_cron()
- 7 taxonomy_edge.module \taxonomy_edge_cron()
Implements hook_cron().
Rebuild sorted tree if invalid
1 string reference to 'taxonomy_edge_cron'
- taxonomy_edge_cronapi in ./
taxonomy_edge.module - Implements hook_cronapi(). Regularly rebuild the edge list and resort trees.
File
- ./
taxonomy_edge.module, line 126 - Selecting all children of a given taxonomy term can be a pain. This module makes it easier to do this, by maintaining a complete list of edges for each term using the adjecency matrix graph theory.
Code
function taxonomy_edge_cron() {
module_load_include('rebuild.inc', 'taxonomy_edge');
foreach (taxonomy_get_vocabularies() as $vocabulary) {
if (!taxonomy_edge_is_order_valid($vocabulary->vid)) {
$context = array();
taxonomy_edge_rebuild_order($vocabulary->vid, $context);
taxonomy_edge_rebuild_finished($context['success'], $context['results'], array());
}
}
}