function forum_form_taxonomy_term_form_alter

Implements hook_form_FORM_ID_alter() for taxonomy_term_form().

File

drupal/core/modules/forum/forum.module, line 623
Provides discussion forums.

Code

function forum_form_taxonomy_term_form_alter(&$form, &$form_state, $form_id) {
  $vid = config('forum.settings')
    ->get('vocabulary');
  if (isset($form['vid']['#value']) && $form['vid']['#value'] == $vid) {

    // Hide multiple parents select from forum terms.
    $form['relations']['parent']['#access'] = FALSE;
  }
}