You are here

function taxonomy_term_depth_batch_depth_update_form in Taxonomy Term Depth 7

1 string reference to 'taxonomy_term_depth_batch_depth_update_form'
taxonomy_term_depth_menu in ./taxonomy_term_depth.module
Implements hook_menu()

File

./taxonomy_term_depth.batch.inc, line 11

Code

function taxonomy_term_depth_batch_depth_update_form($form, &$form_state) {
  $form = array();
  $form['actions']['rebuild all'] = array(
    '#identity' => 'btn_rebuild_all',
    '#value' => t('Rebuild all terms'),
    '#type' => 'submit',
  );
  return $form;
}