MenuLinkResetForm::buildForm

public MenuLinkResetForm::buildForm(array $form, FormStateInterface $form_state, MenuLinkInterface $menu_link_plugin = 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/menu_ui/src/Form/MenuLinkResetForm.php, line 91

Class

MenuLinkResetForm
Defines a confirmation form for resetting a single modified menu link.

Namespace

Drupal\menu_ui\Form

Code

1
2
3
4
5
6
public function buildForm(array $form, FormStateInterface $form_state, MenuLinkInterface $menu_link_plugin = NULL) {
  $this->link = $menu_link_plugin;
 
  $form = parent::buildForm($form, $form_state);
  return $form;
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.