public DeleteForm::buildForm(array $form, FormStateInterface $form_state, $pid = NULL)
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 73
Class
- DeleteForm
- Builds the form to delete a path alias.
Namespace
Drupal\path\Form
Code
1 2 3 4 5 6 7 | 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 ; } |
Please login to continue.