1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
<?php
defined( 'ABSPATH' ) || exit();
if ( ! class_exists( 'WC_Braintree_Local_Payment_Gateway' ) ) {
return;
}
class WC_Braintree_Giropay_Payment_Gateway extends WC_Braintree_Local_Payment_Gateway {
public function __construct() {
$this->currencies = array( 'EUR' );
$this->id = 'braintree_giropay';
$this->default_title = __( 'Giropay', 'woo-payment-gateway' );
$this->method_title = __( 'Braintree Giropay Gateway', 'woo-payment-gateway' );
$this->tab_title = __( 'Giropay', 'woo-payment-gateway' );
$this->method_description = __( 'Giropay gateway that integrates with your Braintree account', 'woo-payment-gateway' );
$this->icon = braintree()->assets_path() . 'img/payment-methods/giropay.svg';
parent::__construct();
}
protected function get_default_available_countries() {
return array( 'DE' );
}
}