-
Notifications
You must be signed in to change notification settings - Fork 26
/
metadata.php
executable file
·266 lines (262 loc) · 14.5 KB
/
metadata.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
<?php
/**
* PAYONE OXID Connector is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PAYONE OXID Connector is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with PAYONE OXID Connector. If not, see <http://www.gnu.org/licenses/>.
*
* @link http://www.payone.de
* @copyright (C) Payone GmbH
* @version OXID eShop CE
*/
$sMetadataVersion = '1.1';
$aModule = array(
'id' => 'fcpayone',
'title' => 'PAYONE Payment für OXID eShop',
'description' => 'Sie suchen nach der optimalen Payment-Lösung für Ihren Online-Shop?<br><br>
PAYONE bietet Unternehmenslösungen zur automatisierten und ganzheitlichen Abwicklung aller Zahlungsprozesse im E-Commerce.
Der Payment Service Provider ist ein Unternehmen der Sparkassen-Finanzgruppe und von der Bundesanstalt für Finanzdienstleistungsaufsicht als Zahlungsinstitut zugelassen.
Das Leistungsspektrum umfasst die Akzeptanz und Abwicklung nationaler und internationaler Zahlungsarten sowie alle Zahlungsdienstleistungen.
Standardisierte Schnittstellen und Extensions erlauben eine einfache Integration in bestehende E-Commerce und IT-Systeme bei höchsten Sicherheitsstandards.<br><br>
Hier finden Sie weitere Informationen zum PAYONE Payment-Modul für OXID eShop:
<a href="https://docs.payone.com/display/public/INT/Oxid+6+Extension" style="color:darkblue;text-decoration: underline;" title="PAYONE Homepage" target="_blank">
https://www.payone.com
</a>',
'thumbnail' => 'picture.gif',
'version' => '1.10.0',
'author' => 'FATCHIP GmbH',
'email' => '[email protected]',
'url' => 'https://wiki.fatchip.de/public/faqpayone',
'extend' => array(
// controllers admin
'payment_main' => 'fc/fcpayone/extend/application/controllers/admin/fcPayOnePaymentMain',
// controllers
'basket' => 'fc/fcpayone/extend/application/controllers/fcPayOneBasketView',
'user' => 'fc/fcpayone/extend/application/controllers/fcPayOneUserView',
'order' => 'fc/fcpayone/extend/application/controllers/fcPayOneOrderView',
'payment' => 'fc/fcpayone/extend/application/controllers/fcPayOnePaymentView',
'thankyou' => 'fc/fcpayone/extend/application/controllers/fcPayOneThankyouView',
// models
'oxbasket' => 'fc/fcpayone/extend/application/models/fcPayOneBasket',
'oxbasketitem' => 'fc/fcpayone/extend/application/models/fcPayOneBasketitem',
'oxorder' => 'fc/fcpayone/extend/application/models/fcPayOneOrder',
'oxorderarticle' => 'fc/fcpayone/extend/application/models/fcPayOneOrderarticle',
'oxpayment' => 'fc/fcpayone/extend/application/models/fcPayOnePayment',
'oxpaymentgateway' => 'fc/fcpayone/extend/application/models/fcPayOnePaymentgateway',
'oxuser' => 'fc/fcpayone/extend/application/models/fcPayOneUser',
'oxaddress' => 'fc/fcpayone/extend/application/models/fcPayOneAddress',
// core
'oxviewconfig' => 'fc/fcpayone/extend/core/fcPayOneViewConf',
),
'files' => array(
// controllers -> admin
'fcpayone_adminview' => 'fc/fcpayone/application/controllers/admin/fcpayone_adminview.php',
'fcpayone_admindetails' => 'fc/fcpayone/application/controllers/admin/fcpayone_admindetails.php',
'fcpayone_adminlist' => 'fc/fcpayone/application/controllers/admin/fcpayone_adminlist.php',
'fcPayOne_Main_Ajax' => 'fc/fcpayone/application/controllers/admin/fcPayOne_Main_Ajax.php',
'fcpayone_admin' => 'fc/fcpayone/application/controllers/admin/fcpayone_admin.php',
'fcpayone_apilog' => 'fc/fcpayone/application/controllers/admin/fcpayone_apilog.php',
'fcpayone_apilog_list' => 'fc/fcpayone/application/controllers/admin/fcpayone_apilog_list.php',
'fcpayone_apilog_main' => 'fc/fcpayone/application/controllers/admin/fcpayone_apilog_main.php',
'fcpayone_list' => 'fc/fcpayone/application/controllers/admin/fcpayone_list.php',
'fcpayone_log' => 'fc/fcpayone/application/controllers/admin/fcpayone_log.php',
'fcpayone_log_list' => 'fc/fcpayone/application/controllers/admin/fcpayone_log_list.php',
'fcpayone_main' => 'fc/fcpayone/application/controllers/admin/fcpayone_main.php',
'fcpayone_order' => 'fc/fcpayone/application/controllers/admin/fcpayone_order.php',
'fcpayone_protocol' => 'fc/fcpayone/application/controllers/admin/fcpayone_protocol.php',
'fcpayone_status_forwarding' => 'fc/fcpayone/application/controllers/admin/fcpayone_status_forwarding.php',
'fcpayone_status_mapping' => 'fc/fcpayone/application/controllers/admin/fcpayone_status_mapping.php',
'fcpayone_error_mapping' => 'fc/fcpayone/application/controllers/admin/fcpayone_error_mapping.php',
// controllers
'fcpayoneiframe' => 'fc/fcpayone/application/controllers/fcpayoneiframe.php',
// models
'fcpouserflag' => 'fc/fcpayone/application/models/fcpouserflag.php',
'fcporequestlog' => 'fc/fcpayone/application/models/fcporequestlog.php',
'fcpotransactionstatus' => 'fc/fcpayone/application/models/fcpotransactionstatus.php',
'fcpomapping' => 'fc/fcpayone/application/models/fcpomapping.php',
'fcpoerrormapping' => 'fc/fcpayone/application/models/fcpoerrormapping.php',
'fcpoforwarding' => 'fc/fcpayone/application/models/fcpoforwarding.php',
'fcpoconfigexport' => 'fc/fcpayone/application/models/fcpoconfigexport.php',
'fcpoklarna' => 'fc/fcpayone/application/models/fcpoklarna.php',
'fcpopaypal' => 'fc/fcpayone/application/models/fcpopaypal.php',
'fcpayone_ajax' => 'fc/fcpayone/application/models/fcpayone_ajax.php',
'fcporatepay' => 'fc/fcpayone/application/models/fcporatepay.php',
// libs
'fcpohelper' => 'fc/fcpayone/lib/fcpohelper.php',
'fcporequest' => 'fc/fcpayone/lib/fcporequest.php',
'fcpoparamsparser' => 'fc/fcpayone/lib/fcpoparamsparser.php',
// core
'fcpayone_events' => 'fc/fcpayone/core/fcpayone_events.php',
),
'templates' => array(
// frontend
'fcpayoneiframe.tpl' => 'fc/fcpayone/application/views/frontend/tpl/fcpayoneiframe.tpl',
// admin
'fcpayone_popup_main.tpl' => 'fc/fcpayone/application/views/admin/tpl/popups/fcpayone_popup_main.tpl',
'fcpayone.tpl' => 'fc/fcpayone/application/views/admin/tpl/fcpayone.tpl',
'fcpayone_apilog.tpl' => 'fc/fcpayone/application/views/admin/tpl/fcpayone_apilog.tpl',
'fcpayone_apilog_list.tpl' => 'fc/fcpayone/application/views/admin/tpl/fcpayone_apilog_list.tpl',
'fcpayone_apilog_main.tpl' => 'fc/fcpayone/application/views/admin/tpl/fcpayone_apilog_main.tpl',
'fcpayone_cc_preview.tpl' => 'fc/fcpayone/application/views/admin/tpl/fcpayone_cc_preview.tpl',
'fcpayone_list.tpl' => 'fc/fcpayone/application/views/admin/tpl/fcpayone_list.tpl',
'fcpayone_log.tpl' => 'fc/fcpayone/application/views/admin/tpl/fcpayone_log.tpl',
'fcpayone_log_list.tpl' => 'fc/fcpayone/application/views/admin/tpl/fcpayone_log_list.tpl',
'fcpayone_main.tpl' => 'fc/fcpayone/application/views/admin/tpl/fcpayone_main.tpl',
'fcpayone_order.tpl' => 'fc/fcpayone/application/views/admin/tpl/fcpayone_order.tpl',
'fcpayone_protocol.tpl' => 'fc/fcpayone/application/views/admin/tpl/fcpayone_protocol.tpl',
'fcpayone_status_forwarding.tpl' => 'fc/fcpayone/application/views/admin/tpl/fcpayone_status_forwarding.tpl',
'fcpayone_status_mapping.tpl' => 'fc/fcpayone/application/views/admin/tpl/fcpayone_status_mapping.tpl',
'fcpayone_error_mapping.tpl' => 'fc/fcpayone/application/views/admin/tpl/fcpayone_error_mapping.tpl',
),
'events' => array(
'onActivate' => 'fcpayone_events::onActivate',
'onDeactivate' => 'fcpayone_events::onDeactivate',
),
'blocks' => array(
array(
'template' => 'layout/base.tpl',
'block' => 'base_js',
'file' => 'fcpo_base_js_extend'
),
array(
'template' => 'layout/base.tpl',
'block' => 'base_style',
'file' => 'fcpo_base_css_extend'
),
array(
'template' => 'page/checkout/basket.tpl',
'block' => 'checkout_basket_main',
'file' => 'fcpo_basket_override'
),
array(
'template' => 'widget/minibasket/minibasket.tpl',
'block' => 'widget_minibasket_total',
'file' => 'fcpo_minibasket_total_override',
),
array(
'template' => 'page/checkout/order.tpl',
'block' => 'checkout_order_address',
'file' => 'fcpo_order_override'
),
array(
'template' => 'page/checkout/order.tpl',
'block' => 'shippingAndPayment',
'file' => 'fcpo_order_order_shippingAndPayment_override'
),
array(
'template' => 'page/checkout/user.tpl',
'block' => 'checkout_user_main',
'file' => 'fcpo_user_override'
),
array(
'template' => '_formparams.tpl',
'block' => 'admin_formparams',
'file' => 'fcpo_admin_formparams',
),
array(
'template' => 'page/checkout/payment.tpl',
'block' => 'change_payment',
'file' => 'fcpo_payment_override',
),
array(
'template' => 'page/checkout/payment.tpl',
'block' => 'select_payment',
'file' => 'fcpo_payment_select_override',
),
array(
'template' => 'page/checkout/order.tpl',
'block' => 'order_basket',
'file' => 'fcpo_order_basket_override',
),
array(
'template' => 'page/checkout/order.tpl',
'block' => 'checkout_order_errors',
'file' => 'fcpo_order_checkout_order_errors'
),
array(
'template' => 'page/checkout/thankyou.tpl',
'block' => 'checkout_thankyou_proceed',
'file' => 'fcpo_thankyou_checkout_thankyou',
),
array(
'template' => 'email/html/order_cust.tpl',
'block' => 'email_html_order_cust_paymentinfo',
'file' => 'fcpo_email_html_order_cust_paymentinfo',
),
array(
'template' => 'email/plain/order_cust.tpl',
'block' => 'email_plain_order_cust_paymentinfo',
'file' => 'fcpo_email_plain_order_cust_paymentinfo',
),
array(
'template' => 'order_list.tpl',
'block' => 'admin_order_list_colgroup',
'file' => 'fcpo_admin_order_list_colgroup',
),
array(
'template' => 'order_list.tpl',
'block' => 'admin_order_list_filter',
'file' => 'fcpo_admin_order_list_filter',
),
array(
'template' => 'order_list.tpl',
'block' => 'admin_order_list_sorting',
'file' => 'fcpo_admin_order_list_sorting',
),
array(
'template' => 'order_list.tpl',
'block' => 'admin_order_list_item',
'file' => 'fcpo_admin_order_list_item',
),
array(
'template' => 'payment_list.tpl',
'block' => 'admin_payment_list_filter',
'file' => 'fcpo_admin_payment_list_filter',
),
array(
'template' => 'payment_main.tpl',
'block' => 'admin_payment_main_form',
'file' => 'fcpo_admin_payment_main_form',
),
array(
'template' => 'page/checkout/basket.tpl',
'block' => 'basket_btn_next_top',
'file' => 'fcpo_basket_btn_next',
),
array(
'template' => 'page/checkout/basket.tpl',
'block' => 'basket_btn_next_bottom',
'file' => 'fcpo_basket_btn_next_bottom',
),
array(
'template' => 'page/checkout/payment.tpl',
'block' => 'checkout_payment_errors',
'file' => 'fcpo_payment_errors',
),
array(
'template' => 'page/checkout/basket.tpl',
'block' => 'checkout_basket_main',
'file' => 'fcpo_basket_errors',
),
),
);
if(class_exists('\OxidEsales\Facts\Facts')) {
$oFacts = new \OxidEsales\Facts\Facts();
$sShopEdition = $oFacts->getEdition();
if($sShopEdition == \OxidEsales\Facts\Edition\EditionSelector::ENTERPRISE) {
$aModule['blocks'][] = array(
'template' => 'roles_bemain.tpl',
'block' => 'admin_roles_bemain_form',
'file' => 'fcpo_admin_roles_bemain_form',
);
$aModule['extend']['roles_bemain'] = 'fc/fcpayone/extend/application/controllers/admin/fcPayOneRolesBeMain';
}
}