You are here

protected function PresetEditForm::actions in Video 8.2

Returns the actions provided by this form.

For the edit form, we only need to change the text of the submit button.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: An associative array containing the current state of the form.

Return value

array An array of supported actions for the current entity form.

Overrides PresetFormBase::actions

File

modules/video_transcode/src/Form/PresetEditForm.php, line 31

Class

PresetEditForm
Class PresetEditForm.

Namespace

Drupal\video_transcode\Form

Code

protected function actions(array $form, FormStateInterface $form_state) {
  $actions = parent::actions($form, $form_state);
  $actions['submit']['#value'] = $this
    ->t('Update');
  return $actions;
}