function taxonomy_edge_rebuild_order_batch in Taxonomy Edge 7
Same name and namespace in other branches
- 8 taxonomy_edge.rebuild.inc \taxonomy_edge_rebuild_order_batch()
- 6 taxonomy_edge.rebuild.inc \taxonomy_edge_rebuild_order_batch()
- 7.2 taxonomy_edge.rebuild.inc \taxonomy_edge_rebuild_order_batch()
Start batch job for rebuild of order.
2 calls to taxonomy_edge_rebuild_order_batch()
- drush_taxonomy_edge_rebuild_order in ./
taxonomy_edge.drush.inc - Rebuild order.
- taxonomy_edge_rebuild_page_confirm_submit in ./
taxonomy_edge.admin.inc - Submit callback; rebuild tree.
File
- ./
taxonomy_edge.rebuild.inc, line 26 - 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);
}