You are here

protected function ContentEntityConfirmFormBase::actions in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Entity/ContentEntityConfirmFormBase.php \Drupal\Core\Entity\ContentEntityConfirmFormBase::actions()

Returns an array of supported actions for the current entity form.

@todo Consider introducing a 'preview' action here, since it is used by many entity types.

Overrides EntityForm::actions

File

core/lib/Drupal/Core/Entity/ContentEntityConfirmFormBase.php, line 84
Contains \Drupal\Core\Entity\ContentEntityConfirmFormBase.

Class

ContentEntityConfirmFormBase
Provides a generic base class for an entity-based confirmation form.

Namespace

Drupal\Core\Entity

Code

protected function actions(array $form, FormStateInterface $form_state) {
  return array(
    'submit' => array(
      '#type' => 'submit',
      '#value' => $this
        ->getConfirmText(),
      '#submit' => array(
        array(
          $this,
          'submitForm',
        ),
      ),
    ),
    'cancel' => ConfirmFormHelper::buildCancelLink($this, $this
      ->getRequest()),
  );
}