You are here

public function OpignoAnswerRevisionDeleteForm::buildForm in Opigno module 3.x

Same name and namespace in other branches
  1. 8 src/Form/OpignoAnswerRevisionDeleteForm.php \Drupal\opigno_module\Form\OpignoAnswerRevisionDeleteForm::buildForm()

Form constructor.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The form structure.

Overrides ConfirmFormBase::buildForm

File

src/Form/OpignoAnswerRevisionDeleteForm.php, line 98

Class

OpignoAnswerRevisionDeleteForm
Provides a form for deleting a Answer revision.

Namespace

Drupal\opigno_module\Form

Code

public function buildForm(array $form, FormStateInterface $form_state, $opigno_answer_revision = NULL) {
  $this->revision = $this->OpignoAnswerStorage
    ->loadRevision($opigno_answer_revision);
  $form = parent::buildForm($form, $form_state);
  return $form;
}