public function ConfigPagesClearConfirmationForm::buildForm in Config Pages 8
Same name and namespace in other branches
- 8.3 src/Form/ConfigPagesClearConfirmationForm.php \Drupal\config_pages\Form\ConfigPagesClearConfirmationForm::buildForm()
- 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 66
Class
- ConfigPagesClearConfirmationForm
- Action on clear ConfigPage submit form.
Namespace
Drupal\config_pages\FormCode
public function buildForm(array $form, FormStateInterface $form_state, $id = NULL) {
$this->id = $id;
return parent::buildForm($form, $form_state);
}