function TermForm::actions
Same name in other branches
- 9 core/modules/taxonomy/src/TermForm.php \Drupal\taxonomy\TermForm::actions()
- 11.x core/modules/taxonomy/src/TermForm.php \Drupal\taxonomy\TermForm::actions()
Overrides EntityForm::actions
1 call to TermForm::actions()
- ForumForm::actions in core/
modules/ forum/ src/ Form/ ForumForm.php - Returns an array of supported actions for the current entity form.
1 method overrides TermForm::actions()
- ForumForm::actions in core/
modules/ forum/ src/ Form/ ForumForm.php - Returns an array of supported actions for the current entity form.
File
-
core/
modules/ taxonomy/ src/ TermForm.php, line 110
Class
- TermForm
- Base for handler for taxonomy term edit forms.
Namespace
Drupal\taxonomyCode
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.