You are here

function active_tags_form_vocabulary_submit in Active Tags 6

Same name and namespace in other branches
  1. 5 active_tags.module \active_tags_form_vocabulary_submit()
  2. 6.2 active_tags.module \active_tags_form_vocabulary_submit()

Stores active_tags settings from taxonomy vocabulary form.

1 string reference to 'active_tags_form_vocabulary_submit'
active_tags_form_alter in ./active_tags.module
Implementation of hook_form_alter.

File

./active_tags.module, line 75
Active Tags widget for free tagging taxonomies

Code

function active_tags_form_vocabulary_submit($form, &$form_state) {
  variable_set('active_tags_' . $form_state['values']['vid'], $form_state['values']['active_tags']);
  return TRUE;
}