public function EntityConfirmFormBase::buildForm in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Entity/EntityConfirmFormBase.php \Drupal\Core\Entity\EntityConfirmFormBase::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 EntityForm::buildForm
2 calls to EntityConfirmFormBase::buildForm()
- BreakLockForm::buildForm in core/
modules/ views_ui/ src/ Form/ BreakLockForm.php - Form constructor.
- EntityDeleteForm::buildForm in core/
lib/ Drupal/ Core/ Entity/ EntityDeleteForm.php - Form constructor.
2 methods override EntityConfirmFormBase::buildForm()
- BreakLockForm::buildForm in core/
modules/ views_ui/ src/ Form/ BreakLockForm.php - Form constructor.
- EntityDeleteForm::buildForm in core/
lib/ Drupal/ Core/ Entity/ EntityDeleteForm.php - Form constructor.
File
- core/
lib/ Drupal/ Core/ Entity/ EntityConfirmFormBase.php, line 59 - Contains \Drupal\Core\Entity\EntityConfirmFormBase.
Class
- EntityConfirmFormBase
- Provides a generic base class for an entity-based confirmation form.
Namespace
Drupal\Core\EntityCode
public function buildForm(array $form, FormStateInterface $form_state) {
$form = parent::buildForm($form, $form_state);
$form['#title'] = $this
->getQuestion();
$form['#attributes']['class'][] = 'confirmation';
$form['description'] = array(
'#markup' => $this
->getDescription(),
);
$form[$this
->getFormName()] = array(
'#type' => 'hidden',
'#value' => 1,
);
// By default, render the form using theme_confirm_form().
if (!isset($form['#theme'])) {
$form['#theme'] = 'confirm_form';
}
return $form;
}