function RulesComponentEditForm::actions
Overrides EntityForm::actions
File
-
src/
Form/ RulesComponentEditForm.php, line 62
Class
- RulesComponentEditForm
- Provides a form to edit a component.
Namespace
Drupal\rules\FormCode
protected function actions(array $form, FormStateInterface $form_state) {
$actions = parent::actions($form, $form_state);
$actions['submit']['#value'] = $this->t('Save');
$actions['cancel'] = [
'#type' => 'submit',
'#limit_validation_errors' => [
[
'locked',
],
],
'#value' => $this->t('Cancel'),
'#submit' => [
'::cancel',
],
];
return $actions;
}