public function EntityMenuLinkCloneForm::submitForm in Menu Link Clone 8.2
Same name and namespace in other branches
- 8.3 src/Form/EntityMenuLinkCloneForm.php \Drupal\menu_link_clone\Form\EntityMenuLinkCloneForm::submitForm()
- 8 src/Form/EntityMenuLinkCloneForm.php \Drupal\menu_link_clone\Form\EntityMenuLinkCloneForm::submitForm()
Form submission handler.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Overrides EntityCloneForm::submitForm
File
- src/
Form/ EntityMenuLinkCloneForm.php, line 85
Class
- EntityMenuLinkCloneForm
- Provides a menu link clone form.
Namespace
Drupal\menu_link_clone\FormCode
public function submitForm(array &$form, FormStateInterface $form_state) {
parent::submitForm($form, $form_state);
$cloneLink = $form_state
->getValue('clone_links');
if ($cloneLink) {
$sourceMenuId = $this->entity
->id();
$destMenuId = $form_state
->getValue('id');
$sourceMenuExistence = $this
->menuLinksAvailabilityCheck($sourceMenuId);
if (!$sourceMenuExistence) {
$this->messenger
->addMessage($this->stringTranslationManager
->translate('Self(Admin) created menu links are not available in ' . $this->entity
->label() . ' menu.'));
}
else {
$result = $this
->cloneMenuLinks($sourceMenuId, $destMenuId);
if ($result) {
$this->messenger
->addMessage($this->stringTranslationManager
->translate('Self(Admin) created Links are cloned successfully for ' . $form_state
->getValue('label') . ' menu.'));
}
else {
$this->messenger
->addMessage($this->stringTranslationManager
->translate('Unsuccessfull to clone links for ' . $form_state
->getValue('label') . ', Please try again or contact to site admin.'));
}
}
}
$response = Url::fromUserInput('/admin/structure/menu');
$form_state
->setRedirectUrl($response);
}