You are here

PaymentRefundForm.php in Payment 8.2

File

src/Entity/Payment/PaymentRefundForm.php
View source
<?php

namespace Drupal\payment\Entity\Payment;

use Drupal\Core\Entity\ContentEntityConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Provides the payment refund form.
 */
class PaymentRefundForm extends ContentEntityConfirmFormBase {

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {

    /** @var static $form */
    $form = parent::create($container);
    $form->stringTranslation = $container
      ->get('string_translation');
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function getQuestion() {
    return $this
      ->t('Do you really want to refund payment #@payment_id?', array(
      '@payment_id' => $this
        ->getEntity()
        ->id(),
    ));
  }

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

  /**
   * {@inheritdoc}
   */
  public function getCancelUrl() {
    return $this
      ->getEntity()
      ->toUrl();
  }

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

    /** @var \Drupal\payment\Entity\PaymentInterface $payment */
    $payment = $this
      ->getEntity();

    /** @var \Drupal\payment\Plugin\Payment\Method\PaymentMethodRefundPaymentInterface $payment_method */
    $payment_method = $payment
      ->getPaymentMethod();
    $result = $payment_method
      ->refundPayment();
    if ($result
      ->isCompleted()) {
      $form_state
        ->setRedirectUrl($payment
        ->toUrl());
    }
    else {
      $form_state
        ->setResponse($result
        ->getCompletionResponse()
        ->getResponse());
    }
  }

}

Classes

Namesort descending Description
PaymentRefundForm Provides the payment refund form.