forked from integry/integry-payments
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTransactionPayment.php
More file actions
86 lines (68 loc) · 1.69 KB
/
TransactionPayment.php
File metadata and controls
86 lines (68 loc) · 1.69 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
<?php
include_once('PaymentException.php');
include_once('TransactionResult.php');
include_once('TransactionError.php');
include_once('TransactionDetails.php');
/**
*
* @package library.payment
* @author Integry Systems
*/
abstract class TransactionPayment
{
protected $details;
protected $isTestTransaction = false;
protected $application;
protected $order;
private $config = array();
public function __construct(TransactionDetails $transactionDetails = null)
{
$this->details = $transactionDetails;
}
public function setAsTestTransaction($test = true)
{
$this->isTestTransaction = true;
}
public function setConfigValue($key, $value)
{
$this->config[$key] = $value;
}
public function getConfigValue($key, $defaultValue = '')
{
if (isset($this->config[$key]))
{
return $this->config[$key];
}
else
{
return $defaultValue;
}
}
public function getDetails()
{
return $this->details;
}
public function setDetails(TransactionDetails $transactionDetails)
{
$this->details = $transactionDetails;
}
public function setApplication(LiveCart $application)
{
$this->application = $application;
}
public function setOrder(CustomerOrder $order)
{
$this->order = $order;
$this->order->setPaymentMethod(get_class($this));
}
/**
* Determine if the payment method supports crediting a refund payment back to customer
*/
public abstract function isVoidable();
public abstract function void();
/**
* Return a valid currency code if the supplied currency is not supported by this payment method
*/
public abstract function getValidCurrency($currentCurrencyCode);
}
?>