public function DeleteForm::buildForm

Same name in this branch

Implements \Drupal\Core\Form\FormInterface::buildForm().

Overrides ConfirmFormBase::buildForm

File

drupal/core/modules/action/lib/Drupal/action/Form/DeleteForm.php, line 57
Contains \Drupal\action\Form\DeleteForm.

Class

DeleteForm
Builds a form to delete an action.

Namespace

Drupal\action\Form

Code

public function buildForm(array $form, array &$form_state, ActionConfigEntityInterface $action = NULL) {
  $this->action = $action;
  return parent::buildForm($form, $form_state);
}