You are here

function hierarchical_select_taxonomy_form_vocabulary_submit in Hierarchical Select 6.3

Same name and namespace in other branches
  1. 5.3 modules/hs_taxonomy.module \hierarchical_select_taxonomy_form_vocabulary_submit()
  2. 5 modules/taxonomy.inc \hierarchical_select_taxonomy_form_vocabulary_submit()
  3. 5.2 modules/taxonomy.inc \hierarchical_select_taxonomy_form_vocabulary_submit()

Additional submit callback for the taxonomy_form_vocabulary form.

1 string reference to 'hierarchical_select_taxonomy_form_vocabulary_submit'
hs_taxonomy_form_taxonomy_form_vocabulary_alter in modules/hs_taxonomy.module

File

modules/hs_taxonomy.module, line 774
Implementation of the Hierarchical Select API for the Taxonomy module.

Code

function hierarchical_select_taxonomy_form_vocabulary_submit($form, &$form_state) {
  $vid = $form_state['values']['vid'];
  variable_set("taxonomy_hierarchical_select_{$vid}", $form_state['values']['hierarchical_select_status'], $form_state);
}