IdealPayment.php
2.31 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?php
namespace Braintree;
/**
* Braintree IdealPayment module
*
* @package Braintree
* @category Resources
*/
/**
* Manages Braintree IdealPayments
*
* <b>== More information ==</b>
*
*
* @package Braintree
* @category Resources
*
* @property-read string $id
* @property-read string $idealTransactionId
* @property-read string $currency
* @property-read string $amount
* @property-read string $status
* @property-read string $orderId
* @property-read string $issuer
* @property-read string $ibanBankAccount
*/
class IdealPayment extends Base
{
/**
* factory method: returns an instance of IdealPayment
* to the requesting method, with populated properties
*
* @ignore
* @return IdealPayment
*/
public static function factory($attributes)
{
$instance = new self();
$instance->_initialize($attributes);
return $instance;
}
/* instance methods */
/**
* sets instance properties from an array of values
*
* @access protected
* @param array $idealPaymentAttribs array of idealPayment data
* @return void
*/
protected function _initialize($idealPaymentAttribs)
{
// set the attributes
$this->_attributes = $idealPaymentAttribs;
$ibanBankAccount = isset($idealPaymentAttribs['ibanBankAccount']) ?
IbanBankAccount::factory($idealPaymentAttribs['ibanBankAccount']) :
null;
$this->_set('ibanBankAccount', $ibanBankAccount);
}
/**
* create a printable representation of the object as:
* ClassName[property=value, property=value]
* @return string
*/
public function __toString()
{
return __CLASS__ . '[' .
Util::attributesToString($this->_attributes) . ']';
}
// static methods redirecting to gateway
public static function find($idealPaymentId)
{
return Configuration::gateway()->idealPayment()->find($idealPaymentId);
}
public static function sale($idealPaymentId, $transactionAttribs)
{
$transactionAttribs['options'] = [
'submitForSettlement' => true
];
return Configuration::gateway()->idealPayment()->sale($idealPaymentId, $transactionAttribs);
}
}
class_alias('Braintree\IdealPayment', 'Braintree_IdealPayment');