file_entity-8.x-2.x-dev/src/Form/FileTypeDisableForm.php
src/Form/FileTypeDisableForm.php
<?php
namespace Drupal\file_entity\Form;
use Drupal\Core\Entity\EntityConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;
use Drupal\file_entity\Entity\FileType;
/**
* Builds the form to disable a file type.
*/
class FileTypeDisableForm extends EntityConfirmFormBase {
/**
* {@inheritdoc}
*/
public function getQuestion() {
return t(
'Are you sure you want to disable the file type %name?',
array('%name' => $this->entity->label())
);
}
/**
* {@inheritdoc}
*/
public function getConfirmText() {
return t('Disable');
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
/** @var FileType $type */
$type = $this->entity;
$type->disable()->save();
$this->messenger()->addMessage(t(
'The file type %label has been disabled.',
array('%label' => $type->label())
));
$form_state->setRedirect('entity.file_type.collection');
}
/**
* {@inheritdoc}
*/
public function getCancelUrl() {
return new Url('entity.file_type.collection');
}
}
