1 | <?php |
||
35 | class AliPay extends PayoneMethod |
||
36 | { |
||
37 | /** |
||
38 | * Payment method code |
||
39 | * |
||
40 | * @var string |
||
41 | */ |
||
42 | protected $_code = PayoneConfig::METHOD_ALIPAY; |
||
43 | |||
44 | /** |
||
45 | * Clearingtype for PAYONE authorization request |
||
46 | * |
||
47 | * @var string |
||
48 | */ |
||
49 | protected $sClearingtype = 'wlt'; |
||
50 | |||
51 | /** |
||
52 | * Determines if the redirect-parameters have to be added |
||
53 | * to the authorization-request |
||
54 | * |
||
55 | * @var bool |
||
56 | */ |
||
57 | protected $blNeedsRedirectUrls = true; |
||
58 | |||
59 | /** |
||
60 | * Return parameters specific to this payment type |
||
61 | * |
||
62 | * @param Order $oOrder |
||
63 | * @return array |
||
64 | */ |
||
65 | public function getPaymentSpecificParameters(Order $oOrder) |
||
69 | } |
||
70 |