memory_limit_policy-8.x-1.2/src/Form/MemoryLimitPolicyEnableForm.php
src/Form/MemoryLimitPolicyEnableForm.php
<?php namespace Drupal\memory_limit_policy\Form; use Drupal\Core\Entity\EntityConfirmFormBase; use Drupal\Core\Form\FormStateInterface; use Drupal\Core\Url; use Symfony\Component\DependencyInjection\ContainerInterface; /** * Provides the policy enable form. */ class MemoryLimitPolicyEnableForm extends EntityConfirmFormBase { /** * {@inheritdoc} */ public static function create(ContainerInterface $container) { $form = parent::create($container); $form->setMessenger( $container->get('messenger') ); return $form; } /** * {@inheritdoc} */ public function getQuestion() { return $this->t('Are you sure you want to enable the %policy policy?', ['%policy' => $this->entity->label()]); } /** * {@inheritdoc} */ public function getCancelUrl() { return new Url('entity.memory_limit_policy.collection'); } /** * {@inheritdoc} */ public function getConfirmText() { return $this->t('Enable'); } /** * {@inheritdoc} */ public function getDescription() { return $this->t('Enabled policies are evaluated. This action can be undone from the policies administration page.'); } /** * {@inheritdoc} */ public function submitForm(array &$form, FormStateInterface $form_state) { $this->entity->enable()->save(); $this->messenger() ->addStatus($this->t('The %policy policy has been enabled.', ['%policy' => $this->entity->label()])); $form_state->setRedirectUrl($this->getCancelUrl()); } }