DeleteForm::buildForm

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;
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.