PaymentRefundForm.php in Commerce Core 8.2        
                          
                  
                        
  
  
  
  
  
File
  modules/payment/src/PluginForm/PaymentRefundForm.php
  
    View source  
  <?php
namespace Drupal\commerce_payment\PluginForm;
use Drupal\commerce_price\Price;
use Drupal\Core\Form\FormStateInterface;
class PaymentRefundForm extends PaymentGatewayFormBase {
  
  public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
    
    $payment = $this->entity;
    $form['#success_message'] = $this
      ->t('Payment refunded.');
    $form['amount'] = [
      '#type' => 'commerce_price',
      '#title' => $this
        ->t('Amount'),
      '#default_value' => $payment
        ->getBalance()
        ->toArray(),
      '#required' => TRUE,
      '#available_currencies' => [
        $payment
          ->getAmount()
          ->getCurrencyCode(),
      ],
    ];
    return $form;
  }
  
  public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
    $values = $form_state
      ->getValue($form['#parents']);
    $amount = Price::fromArray($values['amount']);
    
    $payment = $this->entity;
    $balance = $payment
      ->getBalance();
    if ($amount
      ->greaterThan($balance)) {
      $form_state
        ->setError($form['amount'], $this
        ->t("Can't refund more than @amount.", [
        '@amount' => $balance
          ->__toString(),
      ]));
    }
  }
  
  public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
    $values = $form_state
      ->getValue($form['#parents']);
    $amount = Price::fromArray($values['amount']);
    
    $payment = $this->entity;
    
    $payment_gateway_plugin = $this->plugin;
    $payment_gateway_plugin
      ->refundPayment($payment, $amount);
  }
}