Example #1
0
 /**
  * {@inheritdoc}
  */
 public function actions(array $form, FormStateInterface $form_state) {
   $actions = parent::actions($form, $form_state);
   $actions['submit']['#value'] = $this->t('Save and manage matchers');
   return $actions;
 }
Example #2
0
 /**
  * {@inheritdoc}
  */
 protected function actions(array $form, FormStateInterface $form_state) {
   $actions = parent::actions($form, $form_state);
   $actions['submit']['#value'] = $this->t('Update profile');
   $actions['delete']['#value'] = $this->t('Delete profile');
   return $actions;
 }