You are here

public function ConfigPagesClearConfirmationForm::buildForm in Config Pages 8.3

Same name and namespace in other branches
  1. 8 src/Form/ConfigPagesClearConfirmationForm.php \Drupal\config_pages\Form\ConfigPagesClearConfirmationForm::buildForm()
  2. 8.2 src/Form/ConfigPagesClearConfirmationForm.php \Drupal\config_pages\Form\ConfigPagesClearConfirmationForm::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/ConfigPagesClearConfirmationForm.php, line 63

Class

ConfigPagesClearConfirmationForm
Action on clear ConfigPage submit form.

Namespace

Drupal\config_pages\Form

Code

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