function taxonomy_edge_rebuild_order_batch in Taxonomy Edge 6
Same name and namespace in other branches
- 8 taxonomy_edge.rebuild.inc \taxonomy_edge_rebuild_order_batch()
- 7.2 taxonomy_edge.rebuild.inc \taxonomy_edge_rebuild_order_batch()
- 7 taxonomy_edge.rebuild.inc \taxonomy_edge_rebuild_order_batch()
Start batch job for rebuild of order
1 call to taxonomy_edge_rebuild_order_batch()
- taxonomy_edge_rebuild_page_confirm_submit in ./
taxonomy_edge.admin.inc - Submit callback; rebuild tree.
File
- ./
taxonomy_edge.rebuild.inc, line 27 - This file contains the functions for reuilding various tables.
Code
function taxonomy_edge_rebuild_order_batch($vids) {
$batch = array(
'finished' => 'taxonomy_edge_rebuild_finished',
'file' => drupal_get_path('module', 'taxonomy_edge') . '/taxonomy_edge.rebuild.inc',
'title' => t('Rebuilding taxonomy edge order'),
'init_message' => t('Rebuilding taxonomy edge order'),
);
foreach ($vids as $vid) {
$batch['operations'][] = array(
'taxonomy_edge_rebuild_order',
array(
$vid,
),
);
}
batch_set($batch);
}