You are here

protected function ContentModerationNotificationsFormBase::actions in Content Moderation Notifications 8.2

Same name and namespace in other branches
  1. 8.3 src/Form/ContentModerationNotificationsFormBase.php \Drupal\content_moderation_notifications\Form\ContentModerationNotificationsFormBase::actions()
  2. 8 src/Form/ContentModerationNotificationsFormBase.php \Drupal\content_moderation_notifications\Form\ContentModerationNotificationsFormBase::actions()

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 ContentModerationNotificationsFormBase::actions()
ContentModerationNotificationsAddForm::actions in src/Form/ContentModerationNotificationsAddForm.php
Returns the actions provided by this form.
ContentModerationNotificationsEditForm::actions in src/Form/ContentModerationNotificationsEditForm.php
Returns the actions provided by this form.
2 methods override ContentModerationNotificationsFormBase::actions()
ContentModerationNotificationsAddForm::actions in src/Form/ContentModerationNotificationsAddForm.php
Returns the actions provided by this form.
ContentModerationNotificationsEditForm::actions in src/Form/ContentModerationNotificationsEditForm.php
Returns the actions provided by this form.

File

src/Form/ContentModerationNotificationsFormBase.php, line 289

Class

ContentModerationNotificationsFormBase
Class ContentModerationNotificationFormBase.

Namespace

Drupal\content_moderation_notifications\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;
}