You are here

function taxonomy_menu_ui_form_taxonomy_term_form_submit in Taxonomy Menu UI 8

Form submission handler for menu item field on the texonomy term form.

See also

taxonomy_menu_ui_form_taxonomy_term_form_alter()

1 string reference to 'taxonomy_menu_ui_form_taxonomy_term_form_submit'
taxonomy_menu_ui_form_taxonomy_term_form_alter in ./taxonomy_menu_ui.module
Implements hook_form_BASE_FORM_ID_alter() for \Drupal\taxonomy\TermForm.

File

./taxonomy_menu_ui.module, line 256
Add ability to create menu links for taxonomy terms.

Code

function taxonomy_menu_ui_form_taxonomy_term_form_submit($form, FormStateInterface $form_state) {
  $term = $form_state
    ->getFormObject()
    ->getEntity();
  if (!$form_state
    ->isValueEmpty('menu')) {
    $values = $form_state
      ->getValue('menu');
    if (empty($values['enabled'])) {
      if ($values['entity_id']) {
        $entity = MenuLinkContent::load($values['entity_id']);
        $entity
          ->delete();
      }
    }
    elseif (trim($values['title'])) {

      // Decompose the selected menu parent option into 'menu_name' and
      // 'parent', if the form used the default parent selection widget.
      if (!empty($values['menu_parent'])) {
        list($menu_name, $parent) = explode(':', $values['menu_parent'], 2);
        $values['menu_name'] = $menu_name;
        $values['parent'] = $parent;
      }
      _menu_ui_taxonomy_term_save($term, $values);
    }
  }
}