You are here

elFinderProfileDeleteForm.php in elFinder file manager 8.2

File

src/Form/elFinderProfileDeleteForm.php
View source
<?php

/**
 * @file
 * Contains \Drupal\elfinder\Form\elFinderProfileDeleteForm.
 */
namespace Drupal\elfinder\Form;

use Drupal\Core\Entity\EntityConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;

/**
 * Provides a deletion confirmation form for elFinder Profile.
 */
class elFinderProfileDeleteForm extends EntityConfirmFormBase {

  /**
   * {@inheritdoc}
   */
  public function getQuestion() {
    return $this
      ->t('Are you sure you want to delete the profile %name?', array(
      '%name' => $this->entity
        ->label(),
    ));
  }

  /**
   * {@inheritdoc}
   */
  public function getCancelUrl() {
    return new Url('elfinder.admin');
  }

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

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $this->entity
      ->delete();
    drupal_set_message($this
      ->t('Profile %name has been deleted.', array(
      '%name' => $this->entity
        ->label(),
    )));
    $form_state
      ->setRedirectUrl($this
      ->getCancelUrl());
  }

}

Classes

Namesort descending Description
elFinderProfileDeleteForm Provides a deletion confirmation form for elFinder Profile.