You are here

protected function PresetFormBase::actions in Video 8.2

Overrides Drupal\Core\Entity\EntityFormController::actions().

To set the submit button text, we need to override actions().

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 EntityForm::actions

2 calls to PresetFormBase::actions()
PresetAddForm::actions in modules/video_transcode/src/Form/PresetAddForm.php
Returns the actions provided by this form.
PresetEditForm::actions in modules/video_transcode/src/Form/PresetEditForm.php
Returns the actions provided by this form.
2 methods override PresetFormBase::actions()
PresetAddForm::actions in modules/video_transcode/src/Form/PresetAddForm.php
Returns the actions provided by this form.
PresetEditForm::actions in modules/video_transcode/src/Form/PresetEditForm.php
Returns the actions provided by this form.

File

modules/video_transcode/src/Form/PresetFormBase.php, line 548

Class

PresetFormBase
Class PresetFormBase.

Namespace

Drupal\video_transcode\Form

Code

protected function actions(array $form, FormStateInterface $form_state) {

  // Get the basic actins from the base class.
  $actions = parent::actions($form, $form_state);

  // Change the submit button text.
  $actions['submit']['#value'] = $this
    ->t('Save');

  // Return the result.
  return $actions;
}