function TermForm::actions

Same name and namespace in other branches
  1. 11.x core/modules/taxonomy/src/TermForm.php \Drupal\taxonomy\TermForm::actions()
  2. 10 core/modules/taxonomy/src/TermForm.php \Drupal\taxonomy\TermForm::actions()

File

core/modules/taxonomy/src/TermForm.php, line 104

Class

TermForm
Base for handler for taxonomy term edit forms.

Namespace

Drupal\taxonomy

Code

protected function actions(array $form, FormStateInterface $form_state) {
  $element = parent::actions($form, $form_state);
  if (!$this->getRequest()->query
    ->has('destination')) {
    $element['overview'] = [
      '#type' => 'submit',
      '#value' => $this->t('Save and go to list'),
      '#weight' => 20,
      '#submit' => array_merge($element['submit']['#submit'], [
        '::overview',
      ]),
      '#access' => $this->currentUser()
        ->hasPermission('access taxonomy overview'),
    ];
  }
  return $element;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.