You are here

PromotionEnableForm.php in Commerce Core 8.2

File

modules/promotion/src/Form/PromotionEnableForm.php
View source
<?php

namespace Drupal\commerce_promotion\Form;

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

/**
 * Defines the promotion enable form.
 */
class PromotionEnableForm extends ContentEntityConfirmFormBase {

  /**
   * {@inheritdoc}
   */
  public function getQuestion() {
    return $this
      ->t('Are you sure you want to enable the promotion %label?', [
      '%label' => $this
        ->getEntity()
        ->label(),
    ]);
  }

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

  /**
   * {@inheritdoc}
   */
  public function getCancelUrl() {
    return Url::fromRoute('entity.commerce_promotion.collection');
  }

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

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {

    /** @var \Drupal\commerce_promotion\Entity\PromotionInterface $promotion */
    $promotion = $this
      ->getEntity();
    $promotion
      ->setEnabled(TRUE);
    $promotion
      ->save();
    $this
      ->messenger()
      ->addStatus($this
      ->t('Successfully enabled the promotion %label', [
      '%label' => $promotion
        ->label(),
    ]));
    $form_state
      ->setRedirectUrl($this
      ->getCancelUrl());
  }

}

Classes

Namesort descending Description
PromotionEnableForm Defines the promotion enable form.