public function OpignoAnswerRevisionDeleteForm::buildForm in Opigno module 8
Same name and namespace in other branches
- 3.x 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\FormCode
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;
}