public function DeleteForm::buildForm in Zircon Profile 8
Same name in this branch
- 8 core/modules/path/src/Form/DeleteForm.php \Drupal\path\Form\DeleteForm::buildForm()
- 8 core/modules/forum/src/Form/DeleteForm.php \Drupal\forum\Form\DeleteForm::buildForm()
Same name and namespace in other branches
- 8.0 core/modules/path/src/Form/DeleteForm.php \Drupal\path\Form\DeleteForm::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
- core/
modules/ path/ src/ Form/ DeleteForm.php, line 78 - Contains \Drupal\path\Form\DeleteForm.
Class
- DeleteForm
- Builds the form to delete a path alias.
Namespace
Drupal\path\FormCode
public function buildForm(array $form, FormStateInterface $form_state, $pid = NULL) {
$this->pathAlias = $this->aliasStorage
->load(array(
'pid' => $pid,
));
$form = parent::buildForm($form, $form_state);
return $form;
}