You are here

protected function EntityConfirmFormBase::actions in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Entity/EntityConfirmFormBase.php \Drupal\Core\Entity\EntityConfirmFormBase::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/EntityConfirmFormBase.php, line 78
Contains \Drupal\Core\Entity\EntityConfirmFormBase.

Class

EntityConfirmFormBase
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()),
  );
}