class MenuLinkResetForm

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

Hierarchy

Expanded class hierarchy of MenuLinkResetForm

1 string reference to 'MenuLinkResetForm'
menu.routing.yml in drupal/core/modules/menu/menu.routing.yml
drupal/core/modules/menu/menu.routing.yml

File

drupal/core/modules/menu/lib/Drupal/menu/Form/MenuLinkResetForm.php, line 16
Contains \Drupal\menu\Form\MenuLinkResetForm.

Namespace

Drupal\menu\Form
View source
class MenuLinkResetForm extends ConfirmFormBase {

  /**
   * The menu link object to be deleted.
   *
   * @var \Drupal\menu_link\Plugin\Core\Entity\MenuLink
   */
  protected $menuLink;

  /**
   * {@inheritdoc}
   */
  protected function getQuestion() {
    return t('Are you sure you want to reset the link %item to its default values?', array(
      '%item' => $this->menuLink->link_title,
    ));
  }

  /**
   * {@inheritdoc}
   */
  protected function getCancelPath() {
    return 'admin/structure/menu/manage/' . $this->menuLink->menu_name;
  }

  /**
   * {@inheritdoc}
   */
  protected function getDescription() {
    return t('Any customizations will be lost. This action cannot be undone.');
  }

  /**
   * {@inheritdoc}
   */
  protected function getConfirmText() {
    return t('Reset');
  }

  /**
   * {@inheritdoc}
   */
  public function getFormID() {
    return 'menu_link_reset_form';
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, array &$form_state, MenuLink $menu_link = NULL) {
    $this->menuLink = $menu_link;
    return parent::buildForm($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, array &$form_state) {
    $new_menu_link = $this->menuLink
      ->reset();
    drupal_set_message(t('The menu link was reset to its default settings.'));
    $form_state['redirect'] = 'admin/structure/menu/manage/' . $new_menu_link->menu_name;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfirmFormBase::getCancelText protected function Returns a caption for the link which cancels the action. 2
ConfirmFormBase::getFormName protected function Returns the internal name used to refer to the confirmation item.
ConfirmFormBase::validateForm public function Implements \Drupal\Core\Form\FormInterface::validateForm(). Overrides FormInterface::validateForm 1
MenuLinkResetForm::$menuLink protected property The menu link object to be deleted.
MenuLinkResetForm::buildForm public function Implements \Drupal\Core\Form\FormInterface::buildForm(). Overrides ConfirmFormBase::buildForm
MenuLinkResetForm::getCancelPath protected function Returns the page to go to if the user cancels the action. Overrides ConfirmFormBase::getCancelPath
MenuLinkResetForm::getConfirmText protected function Returns a caption for the button that confirms the action. Overrides ConfirmFormBase::getConfirmText
MenuLinkResetForm::getDescription protected function Returns additional text to display as a description. Overrides ConfirmFormBase::getDescription
MenuLinkResetForm::getFormID public function Returns a unique string identifying the form. Overrides FormInterface::getFormID
MenuLinkResetForm::getQuestion protected function Returns the question to ask the user. Overrides ConfirmFormBase::getQuestion
MenuLinkResetForm::submitForm public function Form submission handler. Overrides FormInterface::submitForm