1 | <?php |
||
35 | class Barzahlen extends PayoneMethod |
||
36 | { |
||
37 | /** |
||
38 | * Payment method code |
||
39 | * |
||
40 | * @var string |
||
41 | */ |
||
42 | protected $_code = PayoneConfig::METHOD_BARZAHLEN; |
||
43 | |||
44 | /** |
||
45 | * Clearingtype for PAYONE authorization request |
||
46 | * |
||
47 | * @var string |
||
48 | */ |
||
49 | protected $sClearingtype = 'csh'; |
||
50 | |||
51 | /** |
||
52 | * Returns authorization-mode |
||
53 | * Barzahlen only supports preauthorization |
||
54 | * |
||
55 | * @return string |
||
56 | */ |
||
57 | public function getAuthorizationMode() |
||
61 | |||
62 | /** |
||
63 | * Perform certain actions with the response |
||
64 | * |
||
65 | * @param array $aResponse |
||
66 | * @return void |
||
67 | */ |
||
68 | protected function handleResponse($aResponse) |
||
76 | |||
77 | /** |
||
78 | * Return parameters specific to this payment type |
||
79 | * |
||
80 | * @param Order $oOrder |
||
81 | * @return array |
||
82 | */ |
||
83 | public function getPaymentSpecificParameters(Order $oOrder) |
||
90 | } |
||
91 |