-
Notifications
You must be signed in to change notification settings - Fork 1
/
Plugin.php
executable file
·148 lines (131 loc) · 3.94 KB
/
Plugin.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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?php namespace Octobro\BankTransfer;
use Backend;
use RainLab\User\Models\User;
use System\Classes\PluginBase;
use Responsiv\Pay\Models\Invoice;
use Responsiv\Pay\Models\PaymentMethod;
use Octommerce\Octommerce\Models\Order;
/**
* payment Plugin Information File
*/
class Plugin extends PluginBase
{
public $require = ['Responsiv.Pay'];
/**
* Returns information about this plugin.
*
* @return array
*/
public function pluginDetails()
{
return [
'name' => 'payment',
'description' => 'Payment gateway for octommerce.',
'author' => 'octobro',
'icon' => 'icon-credit-card'
];
}
/**
* Register method, called when the plugin is first registered.
*
* @return void
*/
public function register()
{
}
/**
* Boot method, called right before the request route.
*
* @return array
*/
public function boot()
{
\Event::listen('backend.menu.extendItems', function($manager) {
$manager->addSideMenuItems('Octommerce.Octommerce', 'commerce', [
'paymentconfirmation' => [
'label' => 'Payment Confirmations',
'url' => Backend::url('octobro/banktransfer/paymentconfirmation'),
'icon' => 'icon-check',
'permissions' => ['octobro.banktransfer.*'],
'order' => 500,
]
]);
});
Order::extend(function($model) {
$model->belongsTo['payment_confirmation'] = [
'Octobro\BankTransfer\Models\PaymentConfirmation',
'key' => 'order_no',
'otherKey' => 'order_no'
];
});
User::extend(function($model) {
$model->addDynamicMethod('getUnconfirmedOrders', function() use ($model) {
return $model->orders()
->whereStatusCode('waiting')
->whereDoesntHave('payment_confirmation')->get();
});
});
}
/**
* Registers any front-end components implemented in this plugin.
*
* @return array
*/
public function registerComponents()
{
return [
'Octobro\BankTransfer\Components\PaymentConfirmation' => 'paymentConfirmation',
];
}
/**
* Registers any back-end permissions used by this plugin.
*
* @return array
*/
public function registerPermissions()
{
return [
'octobro.banktransfer.access_payment_confirmation' => [
'tab' => 'Payments',
'label' => 'Access Payment Confirmation'
],
];
}
/**
* Registers back-end navigation items for this plugin.
*
* @return array
*/
public function registerNavigation()
{
return []; // Remove this line to activate
return [
'payment' => [
'label' => 'payment',
'url' => Backend::url('octobro/banktransfer/mycontroller'),
'icon' => 'icon-leaf',
'permissions' => ['octobro.banktransfer.*'],
'order' => 500,
],
];
}
/**
* Registers any payment gateways implemented in this plugin.
* The gateways must be returned in the following format:
* ['className1' => 'alias'],
* ['className2' => 'anotherAlias']
*/
public function registerPaymentGateways()
{
return [
'Octobro\BankTransfer\PaymentTypes\BankTransfer' => 'bank-transfer',
];
}
public function registerMailTemplates()
{
return [
'octobro.banktransfer::mail.banktransfer_instructions' => 'Bank Transfer payment instructions.',
'octobro.banktransfer::mail.payment_confirmation' => 'Payment Confirmation',
];
}
}