You are here

RemoveSectionForm.php in Drupal 8

Same filename and directory in other branches
  1. 9 core/modules/layout_builder/src/Form/RemoveSectionForm.php

File

core/modules/layout_builder/src/Form/RemoveSectionForm.php
View source
<?php

namespace Drupal\layout_builder\Form;

use Drupal\Core\Form\FormStateInterface;
use Drupal\layout_builder\SectionStorageInterface;

/**
 * Provides a form to confirm the removal of a section.
 *
 * @internal
 *   Form classes are internal.
 */
class RemoveSectionForm extends LayoutRebuildConfirmFormBase {

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'layout_builder_remove_section';
  }

  /**
   * {@inheritdoc}
   */
  public function getQuestion() {
    $configuration = $this->sectionStorage
      ->getSection($this->delta)
      ->getLayoutSettings();
    if ($configuration['label']) {
      return $this
        ->t('Are you sure you want to remove @section?', [
        '@section' => $configuration['label'],
      ]);
    }
    return $this
      ->t('Are you sure you want to remove section @section?', [
      '@section' => $this->delta + 1,
    ]);
  }

  /**
   * {@inheritdoc}
   */
  public function getConfirmText() {
    return $this
      ->t('Remove');
  }

  /**
   * {@inheritdoc}
   */
  protected function handleSectionStorage(SectionStorageInterface $section_storage, FormStateInterface $form_state) {
    $section_storage
      ->removeSection($this->delta);
  }

}

Classes

Namesort descending Description
RemoveSectionForm Provides a form to confirm the removal of a section.