You are here

function cshs_menu_link_form_taxonomy_term_form_alter in Client-side Hierarchical Select 8

Same name and namespace in other branches
  1. 8.2 modules/cshs_menu_link/cshs_menu_link.module \cshs_menu_link_form_taxonomy_term_form_alter()

Implements hook_form_BASE_FORM_ID_alter().

@internal

See also

\taxonomy_menu_ui_form_taxonomy_term_form_alter()

File

modules/cshs_menu_link/cshs_menu_link.module, line 59
Client-side Hierarchical Select: Menu Link.

Code

function cshs_menu_link_form_taxonomy_term_form_alter(array &$form) : void {
  if (\Drupal::moduleHandler()
    ->moduleExists('taxonomy_menu_ui')) {
    \cshs_menu_link_form_node_form_alter($form);
  }
}