You are here

function taxonomy_edge_rebuild_edges_batch in Taxonomy Edge 8

Same name and namespace in other branches
  1. 6 taxonomy_edge.rebuild.inc \taxonomy_edge_rebuild_edges_batch()
  2. 7.2 taxonomy_edge.rebuild.inc \taxonomy_edge_rebuild_edges_batch()
  3. 7 taxonomy_edge.rebuild.inc \taxonomy_edge_rebuild_edges_batch()

Start batch job for rebuild of edges

1 call to taxonomy_edge_rebuild_edges_batch()
taxonomy_edge_rebuild_page_confirm_submit in ./taxonomy_edge.admin.inc
Submit callback; rebuild tree.

File

./taxonomy_edge.rebuild.inc, line 11
This file contains the functions for reuilding various tables.

Code

function taxonomy_edge_rebuild_edges_batch($vids) {
  $batch = array(
    'finished' => 'taxonomy_edge_rebuild_finished',
    'file' => drupal_get_path('module', 'taxonomy_edge') . '/taxonomy_edge.rebuild.inc',
    'title' => t('Rebuilding taxonomy edges'),
    'init_message' => t('Rebuilding taxonomy edges'),
  );
  foreach ($vids as $vid) {
    $batch['operations'][] = array(
      'taxonomy_edge_rebuild_edges',
      array(
        $vid,
      ),
    );
  }
  batch_set($batch);
}