-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlan.php
51 lines (42 loc) · 1.29 KB
/
Plan.php
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
<?php
namespace Braintree;
class Plan extends Base
{
public static function factory($attributes)
{
$instance = new self();
$instance->_initialize($attributes);
return $instance;
}
protected function _initialize($attributes)
{
$this->_attributes = $attributes;
$addOnArray = [];
if (isset($attributes['addOns'])) {
foreach ($attributes['addOns'] AS $addOn) {
$addOnArray[] = AddOn::factory($addOn);
}
}
$this->_attributes['addOns'] = $addOnArray;
$discountArray = [];
if (isset($attributes['discounts'])) {
foreach ($attributes['discounts'] AS $discount) {
$discountArray[] = Discount::factory($discount);
}
}
$this->_attributes['discounts'] = $discountArray;
$planArray = [];
if (isset($attributes['plans'])) {
foreach ($attributes['plans'] AS $plan) {
$planArray[] = self::factory($plan);
}
}
$this->_attributes['plans'] = $planArray;
}
// static methods redirecting to gateway
public static function all()
{
return Configuration::gateway()->plan()->all();
}
}
class_alias('Braintree\Plan', 'Braintree_Plan');