|
1
|
|
|
<?php |
|
2
|
|
|
/* |
|
3
|
|
|
* This file is part of EC-CUBE |
|
4
|
|
|
* |
|
5
|
|
|
* Copyright(c) 2000-2015 LOCKON CO.,LTD. All Rights Reserved. |
|
6
|
|
|
* |
|
7
|
|
|
* http://www.lockon.co.jp/ |
|
8
|
|
|
* |
|
9
|
|
|
* This program is free software; you can redistribute it and/or |
|
10
|
|
|
* modify it under the terms of the GNU General Public License |
|
11
|
|
|
* as published by the Free Software Foundation; either version 2 |
|
12
|
|
|
* of the License, or (at your option) any later version. |
|
13
|
|
|
* |
|
14
|
|
|
* This program is distributed in the hope that it will be useful, |
|
15
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
16
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
17
|
|
|
* GNU General Public License for more details. |
|
18
|
|
|
* |
|
19
|
|
|
* You should have received a copy of the GNU General Public License |
|
20
|
|
|
* along with this program; if not, write to the Free Software |
|
21
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
22
|
|
|
*/ |
|
23
|
|
|
|
|
24
|
|
|
|
|
25
|
|
|
namespace Eccube\Event; |
|
26
|
|
|
|
|
27
|
|
|
|
|
28
|
|
|
final class EccubeEvents |
|
|
|
|
|
|
29
|
|
|
{ |
|
30
|
|
|
|
|
31
|
|
|
/** |
|
32
|
|
|
* Admin/AdminContoller |
|
33
|
|
|
*/ |
|
34
|
|
|
// login |
|
35
|
|
|
const ADMIN_ADMIM_LOGIN_INITIALIZE = 'admin.admin.login.initialize'; |
|
36
|
|
|
|
|
37
|
|
|
// index |
|
38
|
|
|
const ADMIN_ADMIM_INDEX_INITIALIZE = 'admin.admin.index.initialize'; |
|
39
|
|
|
const ADMIN_ADMIM_INDEX_ORDER = 'admin.admin.index.order'; |
|
40
|
|
|
const ADMIN_ADMIM_INDEX_SALES = 'admin.admin.index.sales'; |
|
41
|
|
|
const ADMIN_ADMIM_INDEX_COMPLETE = 'admin.admin.index.complete'; |
|
42
|
|
|
|
|
43
|
|
|
// searchNonStockProducts |
|
44
|
|
|
|
|
45
|
|
|
// changePassword |
|
46
|
|
|
const ADMIN_ADMIM_CHANGE_PASSWORD_INITIALIZE = 'admin.admin.change_password.initialize'; |
|
47
|
|
|
const ADMIN_ADMIN_CHANGE_PASSWORD_COMPLETE = 'admin.admin.change_password.complete'; |
|
48
|
|
|
|
|
49
|
|
|
/** |
|
50
|
|
|
* Admin/Content/BlockController |
|
51
|
|
|
*/ |
|
52
|
|
|
// index |
|
53
|
|
|
const ADMIN_CONTENT_BLOCK_INDEX_COMPLETE = 'admin.content.block.index.complete'; |
|
54
|
|
|
|
|
55
|
|
|
// edit |
|
56
|
|
|
const ADMIN_CONTENT_BLOCK_EDIT_INITIALIZE = 'admin.content.block.edit.initialize'; |
|
57
|
|
|
const ADMIN_CONTENT_BLOCK_EDIT_COMPLETE = 'admin.content.block.edit.complete'; |
|
58
|
|
|
|
|
59
|
|
|
// delete |
|
60
|
|
|
const ADMIN_CONTENT_BLOCK_DELETE_COMPLETE = 'admin.content.block.delete.complete'; |
|
61
|
|
|
|
|
62
|
|
|
/** |
|
63
|
|
|
* Admin/Content/FileController |
|
64
|
|
|
*/ |
|
65
|
|
|
// index |
|
66
|
|
|
|
|
67
|
|
|
// create |
|
68
|
|
|
|
|
69
|
|
|
// delete |
|
70
|
|
|
|
|
71
|
|
|
// download |
|
72
|
|
|
|
|
73
|
|
|
// upload |
|
74
|
|
|
|
|
75
|
|
|
|
|
76
|
|
|
/** |
|
77
|
|
|
* Admin/Content/LayoutController |
|
78
|
|
|
*/ |
|
79
|
|
|
// index |
|
80
|
|
|
const ADMIN_CONTENT_LAYOUT_INDEX_INITIALIZE = 'admin.content.layout.index.initialize'; |
|
81
|
|
|
const ADMIN_CONTENT_LAYOUT_INDEX_COMPLETE = 'admin.content.layout.index.complete'; |
|
82
|
|
|
|
|
83
|
|
|
|
|
84
|
|
|
/** |
|
85
|
|
|
* Admin/Content/NewsController |
|
86
|
|
|
*/ |
|
87
|
|
|
// index |
|
88
|
|
|
const ADMIN_CONTENT_NEWS_INDEX_INITIALIZE = 'admin.content.news.index.initialize'; |
|
89
|
|
|
|
|
90
|
|
|
// edit |
|
91
|
|
|
const ADMIN_CONTENT_NEWS_EDIT_INITIALIZE = 'admin.content.news.edit.initialize'; |
|
92
|
|
|
const ADMIN_CONTENT_NEWS_EDIT_COMPLETE = 'admin.content.news.edit.complete'; |
|
93
|
|
|
|
|
94
|
|
|
// delete |
|
95
|
|
|
const ADMIN_CONTENT_NEWS_DELETE_COMPLETE = 'admin.content.news.delete.complete'; |
|
96
|
|
|
|
|
97
|
|
|
|
|
98
|
|
|
/** |
|
99
|
|
|
* Admin/Content/PageController |
|
100
|
|
|
*/ |
|
101
|
|
|
// index |
|
102
|
|
|
const ADMIN_CONTENT_PAGE_INDEX_COMPLETE = 'admin.content.page.index.initialize'; |
|
103
|
|
|
|
|
104
|
|
|
// edit |
|
105
|
|
|
const ADMIN_CONTENT_PAGE_EDIT_INITIALIZE = 'admin.content.page.edit.initialize'; |
|
106
|
|
|
const ADMIN_CONTENT_PAGE_EDIT_COMPLETE = 'admin.content.page.edit.complete'; |
|
107
|
|
|
|
|
108
|
|
|
// delete |
|
109
|
|
|
const ADMIN_CONTENT_PAGE_DELETE_COMPLETE = 'admin.content.page.delete.complete'; |
|
110
|
|
|
|
|
111
|
|
|
/** |
|
112
|
|
|
* Admin/Customer/CustomerController |
|
113
|
|
|
*/ |
|
114
|
|
|
// index |
|
115
|
|
|
const ADMIN_CUSTOMER_INDEX_INITIALIZE = 'admin.customer.index.initialize'; |
|
116
|
|
|
const ADMIN_CUSTOMER_INDEX_SEARCH = 'admin.customer.index.search'; |
|
117
|
|
|
|
|
118
|
|
|
// resend |
|
119
|
|
|
const ADMIN_CUSTOMER_RESEND_COMPLETE = 'admin.customer.resend.complete'; |
|
120
|
|
|
|
|
121
|
|
|
// delete |
|
122
|
|
|
const ADMIN_CUSTOMER_DELETE_COMPLETE = 'admin.customer.delete.complete'; |
|
123
|
|
|
|
|
124
|
|
|
// export |
|
125
|
|
|
const ADMIN_CUSTOMER_CSV_EXPORT = 'admin.customer.csv.export'; |
|
126
|
|
|
|
|
127
|
|
|
|
|
128
|
|
|
/** |
|
129
|
|
|
* Admin/Customer/CustomerEditController |
|
130
|
|
|
*/ |
|
131
|
|
|
// index |
|
132
|
|
|
const ADMIN_CUSTOMER_EDIT_INDEX_INITIALIZE = 'admin.customer.edit.index.initialize'; |
|
133
|
|
|
const ADMIN_CUSTOMER_EDIT_INDEX_COMPLETE = 'admin.customer.edit.index.complete'; |
|
134
|
|
|
|
|
135
|
|
|
|
|
136
|
|
|
/** |
|
137
|
|
|
* Admin/Order/EditController |
|
138
|
|
|
*/ |
|
139
|
|
|
// index |
|
140
|
|
|
const ADMIN_ORDER_EDIT_INDEX_INITIALIZE = 'admin.order.edit.index.initialize'; |
|
141
|
|
|
const ADMIN_ORDER_EDIT_INDEX_PROGRESS = 'admin.order.edit.index.progress'; |
|
142
|
|
|
const ADMIN_ORDER_EDIT_INDEX_COMPLETE = 'admin.order.edit.index.complete'; |
|
143
|
|
|
|
|
144
|
|
|
// searchCustomer |
|
145
|
|
|
const ADMIN_ORDER_EDIT_SEARCH_CUSTOMER_INITIALIZE = 'admin.order.edit.search.customer.initialize'; |
|
146
|
|
|
const ADMIN_ORDER_EDIT_SEARCH_CUSTOMER_SEARCH = 'admin.order.edit.search.customer.search'; |
|
147
|
|
|
const ADMIN_ORDER_EDIT_SEARCH_CUSTOMER_COMPLETE = 'admin.order.edit.search.customer.complete'; |
|
148
|
|
|
|
|
149
|
|
|
// searchCustomerById |
|
150
|
|
|
const ADMIN_ORDER_EDIT_SEARCH_CUSTOMER_BY_ID_INITIALIZE = 'admin.order.edit.search.customer.by.id.initialize'; |
|
151
|
|
|
const ADMIN_ORDER_EDIT_SEARCH_CUSTOMER_BY_ID_COMPLETE = 'admin.order.edit.search.customer.by.id.complete'; |
|
152
|
|
|
|
|
153
|
|
|
// searchProduct |
|
154
|
|
|
const ADMIN_ORDER_EDIT_SEARCH_PRODUCT_INITIALIZE = 'admin.order.edit.search.product.initialize'; |
|
155
|
|
|
const ADMIN_ORDER_EDIT_SEARCH_PRODUCT_SEARCH = 'admin.order.edit.search.product.search'; |
|
156
|
|
|
const ADMIN_ORDER_EDIT_SEARCH_PRODUCT_COMPLETE = 'admin.order.edit.search.product.complete'; |
|
157
|
|
|
|
|
158
|
|
|
|
|
159
|
|
|
/** |
|
160
|
|
|
* Admin/Order/MailController |
|
161
|
|
|
*/ |
|
162
|
|
|
// index |
|
163
|
|
|
const ADMIN_ORDER_MAIL_INDEX_INITIALIZE = 'admin.order.mail.index.initialize'; |
|
164
|
|
|
const ADMIN_ORDER_MAIL_INDEX_CHANGE = 'admin.order.mail.index.change'; |
|
165
|
|
|
const ADMIN_ORDER_MAIL_INDEX_CONFIRM = 'admin.order.mail.index.confirm'; |
|
166
|
|
|
const ADMIN_ORDER_MAIL_INDEX_COMPLETE = 'admin.order.mail.index.complete'; |
|
167
|
|
|
|
|
168
|
|
|
// view |
|
169
|
|
|
const ADMIN_ORDER_MAIL_VIEW_COMPLETE = 'admin.order.mail.view.complete'; |
|
170
|
|
|
|
|
171
|
|
|
// mailAll |
|
172
|
|
|
const ADMIN_ORDER_MAIL_MAIL_ALL_INITIALIZE = 'admin.order.mail.mail.all.initialize'; |
|
173
|
|
|
const ADMIN_ORDER_MAIL_MAIL_ALL_CHANGE = 'admin.order.mail.mail.all.change'; |
|
174
|
|
|
const ADMIN_ORDER_MAIL_MAIL_ALL_CONFIRM = 'admin.order.mail.mail.all.confirm'; |
|
175
|
|
|
const ADMIN_ORDER_MAIL_MAIL_ALL_COMPLETE = 'admin.order.mail.mail.all.complete'; |
|
176
|
|
|
|
|
177
|
|
|
|
|
178
|
|
|
/** |
|
179
|
|
|
* Admin/Order/OrderController |
|
180
|
|
|
*/ |
|
181
|
|
|
// index |
|
182
|
|
|
const ADMIN_ORDER_INDEX_INITIALIZE = 'admin.order.index.initialize'; |
|
183
|
|
|
const ADMIN_ORDER_INDEX_SEARCH = 'admin.order.index.search'; |
|
184
|
|
|
|
|
185
|
|
|
// delete |
|
186
|
|
|
const ADMIN_ORDER_DELETE_COMPLETE = 'admin.order.delete.complete'; |
|
187
|
|
|
|
|
188
|
|
|
// exportOrder |
|
189
|
|
|
const ADMIN_ORDER_CSV_EXPORT_ORDER = 'admin.order.csv.export.order'; |
|
190
|
|
|
|
|
191
|
|
|
// exportShipping |
|
192
|
|
|
const ADMIN_ORDER_CSV_EXPORT_SHIPPING = 'admin.order.csv.export.shipping'; |
|
193
|
|
|
|
|
194
|
|
|
|
|
195
|
|
|
/** |
|
196
|
|
|
* Admin/Product/CategoryController |
|
197
|
|
|
*/ |
|
198
|
|
|
// index |
|
199
|
|
|
const ADMIN_PRODUCT_CATEGORY_INDEX_INITIALIZE = 'admin.product.category.index.initialize'; |
|
200
|
|
|
const ADMIN_PRODUCT_CATEGORY_INDEX_COMPLETE = 'admin.product.category.index.complete'; |
|
201
|
|
|
|
|
202
|
|
|
// delete |
|
203
|
|
|
const ADMIN_PRODUCT_CATEGORY_DELETE_COMPLETE = 'admin.product.category.delete.complete'; |
|
204
|
|
|
|
|
205
|
|
|
// export |
|
206
|
|
|
const ADMIN_PRODUCT_CATEGORY_CSV_EXPORT = 'admin.product.category.csv.export'; |
|
207
|
|
|
|
|
208
|
|
|
|
|
209
|
|
|
/** |
|
210
|
|
|
* Admin/Product/ClassCategoryController |
|
211
|
|
|
*/ |
|
212
|
|
|
// index |
|
213
|
|
|
const ADMIN_PRODUCT_CLASS_CATEGORY_INDEX_INITIALIZE = 'admin.product.class.category.index.initialize'; |
|
214
|
|
|
const ADMIN_PRODUCT_CLASS_CATEGORY_INDEX_COMPLETE = 'admin.product.class.category.index.complete'; |
|
215
|
|
|
|
|
216
|
|
|
// delete |
|
217
|
|
|
const ADMIN_PRODUCT_CLASS_CATEGORY_DELETE_COMPLETE = 'admin.product.class.category.delete.complete'; |
|
218
|
|
|
|
|
219
|
|
|
|
|
220
|
|
|
/** |
|
221
|
|
|
* Admin/Product/ClassNameController |
|
222
|
|
|
*/ |
|
223
|
|
|
// index |
|
224
|
|
|
const ADMIN_PRODUCT_CLASS_NAME_INDEX_INITIALIZE = 'admin.product.class.name.index.initialize'; |
|
225
|
|
|
const ADMIN_PRODUCT_CLASS_NAME_INDEX_COMPLETE = 'admin.product.class.name.index.complete'; |
|
226
|
|
|
|
|
227
|
|
|
// delete |
|
228
|
|
|
const ADMIN_PRODUCT_CLASS_NAME_DELETE_COMPLETE = 'admin.product.class.name.delete.complete'; |
|
229
|
|
|
|
|
230
|
|
|
|
|
231
|
|
|
/** |
|
232
|
|
|
* Admin/Product/CsvImportController |
|
233
|
|
|
*/ |
|
234
|
|
|
// csvProduct |
|
235
|
|
|
|
|
236
|
|
|
// csvCatgory |
|
237
|
|
|
|
|
238
|
|
|
// csvTemplate |
|
239
|
|
|
|
|
240
|
|
|
|
|
241
|
|
|
/** |
|
242
|
|
|
* Admin/Product/ProductClassController |
|
243
|
|
|
*/ |
|
244
|
|
|
// index |
|
245
|
|
|
const ADMIN_PRODUCT_PRODUCT_CLASS_INDEX_INITIALIZE = 'admin.product.product.class.index.initialize'; |
|
246
|
|
|
const ADMIN_PRODUCT_PRODUCT_CLASS_INDEX_CLASSES = 'admin.product.product.class.index.classes'; |
|
247
|
|
|
|
|
248
|
|
|
// edit |
|
249
|
|
|
const ADMIN_PRODUCT_PRODUCT_CLASS_EDIT_INITIALIZE = 'admin.product.product.class.edit.initialize'; |
|
250
|
|
|
const ADMIN_PRODUCT_PRODUCT_CLASS_EDIT_COMPLETE = 'admin.product.product.class.edit.complete'; |
|
251
|
|
|
const ADMIN_PRODUCT_PRODUCT_CLASS_EDIT_UPDATE = 'admin.product.product.class.edit.update'; |
|
252
|
|
|
const ADMIN_PRODUCT_PRODUCT_CLASS_EDIT_DELETE = 'admin.product.product.class.edit.delete'; |
|
253
|
|
|
|
|
254
|
|
|
|
|
255
|
|
|
/** |
|
256
|
|
|
* Admin/Product/ProductController |
|
257
|
|
|
*/ |
|
258
|
|
|
// index |
|
259
|
|
|
const ADMIN_PRODUCT_INDEX_INITIALIZE = 'admin.product.index.initialize'; |
|
260
|
|
|
const ADMIN_PRODUCT_INDEX_SEARCH = 'admin.product.index.search'; |
|
261
|
|
|
|
|
262
|
|
|
// addImage |
|
263
|
|
|
const ADMIN_PRODUCT_ADD_IMAGE_COMPLETE = 'admin.product.add.image.complete'; |
|
264
|
|
|
|
|
265
|
|
|
// edit |
|
266
|
|
|
const ADMIN_PRODUCT_EDIT_INITIALIZE = 'admin.product.edit.initialize'; |
|
267
|
|
|
const ADMIN_PRODUCT_EDIT_SEARCH = 'admin.product.edit.search'; |
|
268
|
|
|
const ADMIN_PRODUCT_EDIT_COMPLETE = 'admin.product.edit.complete'; |
|
269
|
|
|
|
|
270
|
|
|
// delete |
|
271
|
|
|
const ADMIN_PRODUCT_DELETE_COMPLETE = 'admin.product.delete.complete'; |
|
272
|
|
|
|
|
273
|
|
|
// copy |
|
274
|
|
|
const ADMIN_PRODUCT_COPY_COMPLETE = 'admin.product.copy.complete'; |
|
275
|
|
|
|
|
276
|
|
|
// display |
|
277
|
|
|
const ADMIN_PRODUCT_DISPLAY_COMPLETE = 'admin.product.display.complete'; |
|
278
|
|
|
|
|
279
|
|
|
// export |
|
280
|
|
|
const ADMIN_PRODUCT_CSV_EXPORT = 'admin.product.csv.export'; |
|
281
|
|
|
|
|
282
|
|
|
|
|
283
|
|
|
/** |
|
284
|
|
|
* Admin/Setting/Shop/CsvController |
|
285
|
|
|
*/ |
|
286
|
|
|
// index |
|
287
|
|
|
const ADMIN_SETTING_SHOP_CSV_INDEX_INITIALIZE = 'admin.setting.shop.csv.index.initialize'; |
|
288
|
|
|
const ADMIN_SETTING_SHOP_CSV_INDEX_COMPLETE = 'admin.setting.shop.csv.index.complete'; |
|
289
|
|
|
|
|
290
|
|
|
/** |
|
291
|
|
|
* Admin/Setting/Shop/CustomerAgreementController |
|
292
|
|
|
*/ |
|
293
|
|
|
// index |
|
294
|
|
|
const ADMIN_SETTING_SHOP_CUSTOMER_AGREEMENT_INDEX_INITIALIZE = 'admin.setting.shop.customer.agreement.index.initialize'; |
|
295
|
|
|
const ADMIN_SETTING_SHOP_CUSTOMER_AGREEMENT_INDEX_COMPLETE = 'admin.setting.shop.customer.agreement.index.complete'; |
|
296
|
|
|
|
|
297
|
|
|
/** |
|
298
|
|
|
* Admin/Setting/Shop/DeliveryController |
|
299
|
|
|
*/ |
|
300
|
|
|
// index |
|
301
|
|
|
const ADMIN_SETTING_SHOP_DELIVERY_INDEX_COMPLETE = 'admin.setting.shop.delivery.index.complete'; |
|
302
|
|
|
// edit |
|
303
|
|
|
const ADMIN_SETTING_SHOP_DELIVERY_EDIT_INITIALIZE = 'admin.setting.shop.delivery.edit.initialize'; |
|
304
|
|
|
const ADMIN_SETTING_SHOP_DELIVERY_EDIT_COMPLETE = 'admin.setting.shop.delivery.edit.complete'; |
|
305
|
|
|
// delete |
|
306
|
|
|
const ADMIN_SETTING_SHOP_DELIVERY_DELETE_COMPLETE = 'admin.setting.shop.delivery.delete.complete'; |
|
307
|
|
|
|
|
308
|
|
|
/** |
|
309
|
|
|
* Admin/Setting/Shop/MailController |
|
310
|
|
|
*/ |
|
311
|
|
|
// index |
|
312
|
|
|
const ADMIN_SETTING_SHOP_MAIL_INDEX_INITIALIZE = 'admin.setting.shop.mail.index.initialize'; |
|
313
|
|
|
const ADMIN_SETTING_SHOP_MAIL_INDEX_COMPLETE = 'admin.setting.shop.mail.index.complete'; |
|
314
|
|
|
|
|
315
|
|
|
/** |
|
316
|
|
|
* Admin/Setting/Shop/PaymentController |
|
317
|
|
|
*/ |
|
318
|
|
|
// index |
|
319
|
|
|
const ADMIN_SETTING_SHOP_PAYMENT_INDEX_COMPLETE = 'admin.setting.shop.payment.index.complete'; |
|
320
|
|
|
// edit |
|
321
|
|
|
const ADMIN_SETTING_SHOP_PAYMENT_EDIT_INITIALIZE = 'admin.setting.shop.payment.edit.initialize'; |
|
322
|
|
|
const ADMIN_SETTING_SHOP_PAYMENT_EDIT_COMPLETE = 'admin.setting.shop.payment.edit.complete'; |
|
323
|
|
|
// imageAdd |
|
324
|
|
|
const ADMIN_SETTING_SHOP_PAYMENT_IMAGE_ADD_COMPLETE = 'admin.setting.shop.payment.image.add.complete'; |
|
325
|
|
|
// delete |
|
326
|
|
|
const ADMIN_SETTING_SHOP_PAYMENT_DELETE_COMPLETE = 'admin.setting.shop.payment.delete.complete'; |
|
327
|
|
|
|
|
328
|
|
|
/** |
|
329
|
|
|
* Admin/Setting/Shop/ShopController |
|
330
|
|
|
*/ |
|
331
|
|
|
// index |
|
332
|
|
|
const ADMIN_SETTING_SHOP_SHOP_INDEX_INITIALIZE = 'admin.setting.shop.shop.index.initialize'; |
|
333
|
|
|
const ADMIN_SETTING_SHOP_SHOP_INDEX_COMPLETE = 'admin.setting.shop.shop.index.complete'; |
|
334
|
|
|
|
|
335
|
|
|
/** |
|
336
|
|
|
* Admin/Setting/Shop/TaxRuleController |
|
337
|
|
|
*/ |
|
338
|
|
|
// index |
|
339
|
|
|
const ADMIN_SETTING_SHOP_TAX_RULE_INDEX_INITIALIZE = 'admin.setting.shop.tax.rule.index.initialize'; |
|
340
|
|
|
const ADMIN_SETTING_SHOP_TAX_RULE_INDEX_COMPLETE = 'admin.setting.shop.tax.rule.index.complete'; |
|
341
|
|
|
// delete |
|
342
|
|
|
const ADMIN_SETTING_SHOP_TAX_RULE_DELETE_COMPLETE = 'admin.setting.shop.tax.rule.delete.complete'; |
|
343
|
|
|
// editParameter |
|
344
|
|
|
const ADMIN_SETTING_SHOP_TAX_RULE_EDIT_PARAMETER_INITIALIZE = 'admin.setting.shop.tax.rule.edit.parameter.initialize'; |
|
345
|
|
|
const ADMIN_SETTING_SHOP_TAX_RULE_EDIT_PARAMETER_COMPLETE = 'admin.setting.shop.tax.rule.edit.parameter.complete'; |
|
346
|
|
|
|
|
347
|
|
|
/** |
|
348
|
|
|
* Admin/Setting/Shop/TradelawController |
|
349
|
|
|
*/ |
|
350
|
|
|
// index |
|
351
|
|
|
const ADMIN_SETTING_SHOP_TRADE_LAW_INDEX_INITIALIZE = 'admin.setting.shop.trade.law.index.initialize'; |
|
352
|
|
|
const ADMIN_SETTING_SHOP_TRADE_LAW_INDEX_COMPLETE = 'admin.setting.shop.trade.law.index.complete'; |
|
353
|
|
|
|
|
354
|
|
|
/** |
|
355
|
|
|
* Admin/Setting/System/AuthorityController |
|
356
|
|
|
*/ |
|
357
|
|
|
// index |
|
358
|
|
|
const ADMIN_SETTING_SYSTEM_AUTHORITY_INDEX_INITIALIZE = 'admin.setting.system.authority.index.initialize'; |
|
359
|
|
|
const ADMIN_SETTING_SYSTEM_AUTHORITY_INDEX_COMPLETE = 'admin.setting.system.authority.index.complete'; |
|
360
|
|
|
|
|
361
|
|
|
|
|
362
|
|
|
/** |
|
363
|
|
|
* Admin/Setting/System/LogController |
|
364
|
|
|
*/ |
|
365
|
|
|
// index |
|
366
|
|
|
const ADMIN_SETTING_SYSTEM_LOG_INDEX_INITIALIZE = 'admin.setting.system.log.index.initialize'; |
|
367
|
|
|
const ADMIN_SETTING_SYSTEM_LOG_INDEX_COMPLETE = 'admin.setting.system.log.index.complete'; |
|
368
|
|
|
|
|
369
|
|
|
|
|
370
|
|
|
/** |
|
371
|
|
|
* Admin/Setting/System/MasterdataController |
|
372
|
|
|
*/ |
|
373
|
|
|
// index |
|
374
|
|
|
const ADMIN_SETTING_SYSTEM_MASTERDATA_INDEX_INITIALIZE = 'admin.setting.system.masterdata.index.initialize'; |
|
375
|
|
|
const ADMIN_SETTING_SYSTEM_MASTERDATA_INDEX_FORM2_INITIALIZE = 'admin.setting.system.masterdata.index.form2.initialize'; |
|
376
|
|
|
const ADMIN_SETTING_SYSTEM_MASTERDATA_INDEX_COMPLETE = 'admin.setting.system.masterdata.index.complete'; |
|
377
|
|
|
|
|
378
|
|
|
// edit |
|
379
|
|
|
const ADMIN_SETTING_SYSTEM_MASTERDATA_EDIT_INITIALIZE = 'admin.setting.system.masterdata.edit.initialize'; |
|
380
|
|
|
const ADMIN_SETTING_SYSTEM_MASTERDATA_EDIT_FORM_INITIALIZE = 'admin.setting.system.masterdata.edit.form.initialize'; |
|
381
|
|
|
const ADMIN_SETTING_SYSTEM_MASTERDATA_EDIT_COMPLETE = 'admin.setting.system.masterdata.edit.complete'; |
|
382
|
|
|
|
|
383
|
|
|
|
|
384
|
|
|
/** |
|
385
|
|
|
* Admin/Setting/System/MemberController |
|
386
|
|
|
*/ |
|
387
|
|
|
// index |
|
388
|
|
|
const ADMIN_SETTING_SYSTEM_MEMBER_INDEX_INITIALIZE = 'admin.setting.system.member.index.initialize'; |
|
389
|
|
|
|
|
390
|
|
|
// edit |
|
391
|
|
|
const ADMIN_SETTING_SYSTEM_MEMBER_EDIT_INITIALIZE = 'admin.setting.system.member.edit.initialize'; |
|
392
|
|
|
const ADMIN_SETTING_SYSTEM_MEMBER_EDIT_COMPLETE = 'admin.setting.system.member.edit.complete'; |
|
393
|
|
|
|
|
394
|
|
|
// delete |
|
395
|
|
|
const ADMIN_SETTING_SYSTEM_MEMBER_DELETE_INITIALIZE = 'admin.setting.system.member.delete.initialize'; |
|
396
|
|
|
const ADMIN_SETTING_SYSTEM_MEMBER_DELETE_COMPLETE = 'admin.setting.system.member.delete.complete'; |
|
397
|
|
|
|
|
398
|
|
|
|
|
399
|
|
|
/** |
|
400
|
|
|
* Block/SearchProductController |
|
401
|
|
|
*/ |
|
402
|
|
|
// index |
|
403
|
|
|
const FRONT_BLOCK_SEARCH_PRODUCT_INDEX_INITIALIZE = 'front.block.search.product.index.initialize'; |
|
404
|
|
|
|
|
405
|
|
|
/** |
|
406
|
|
|
* Mypage/ChangeController |
|
407
|
|
|
*/ |
|
408
|
|
|
// index |
|
409
|
|
|
const FRONT_MYPAGE_CHANGE_INDEX_INITIALIZE = 'front.mypage.change.index.initialize'; |
|
410
|
|
|
const FRONT_MYPAGE_CHANGE_INDEX_COMPLETE = 'front.mypage.change.index.complete'; |
|
411
|
|
|
|
|
412
|
|
|
/** |
|
413
|
|
|
* Mypage/DeliveryController |
|
414
|
|
|
*/ |
|
415
|
|
|
// edit |
|
416
|
|
|
const FRONT_MYPAGE_DELIVERY_EDIT_INITIALIZE = 'front.mypage.delivery.edit.initialize'; |
|
417
|
|
|
const FRONT_MYPAGE_DELIVERY_EDIT_COMPLETE = 'front.mypage.delivery.edit.complete'; |
|
418
|
|
|
|
|
419
|
|
|
// delete |
|
420
|
|
|
const FRONT_MYPAGE_DELIVERY_DELETE_COMPLETE = 'front.mypage.delete.complete'; |
|
421
|
|
|
|
|
422
|
|
|
/** |
|
423
|
|
|
* Mypage/MypageController |
|
424
|
|
|
*/ |
|
425
|
|
|
// login |
|
426
|
|
|
const FRONT_MYPAGE_MYPAGE_LOGIN_INITIALIZE = 'front.mypage.mypage.login.initialize'; |
|
427
|
|
|
|
|
428
|
|
|
// index |
|
429
|
|
|
const FRONT_MYPAGE_MYPAGE_INDEX_SEARCH = 'front.mypage.mypage.index.search'; |
|
430
|
|
|
|
|
431
|
|
|
// history |
|
432
|
|
|
const FRONT_MYPAGE_MYPAGE_HISTORY_INITIALIZE = 'front.mypage.mypage.history.initialize'; |
|
433
|
|
|
|
|
434
|
|
|
// order |
|
435
|
|
|
const FRONT_MYPAGE_MYPAGE_ORDER_INITIALIZE = 'front.mypage.mypage.order.initialize'; |
|
436
|
|
|
const FRONT_MYPAGE_MYPAGE_ORDER_COMPLETE = 'front.mypage.mypage.order.complete'; |
|
437
|
|
|
|
|
438
|
|
|
// favorite |
|
439
|
|
|
const FRONT_MYPAGE_MYPAGE_FAVORITE_SEARCH = 'front.mypage.mypage.favorite.search'; |
|
440
|
|
|
|
|
441
|
|
|
// delete |
|
442
|
|
|
const FRONT_MYPAGE_MYPAGE_DELETE_INITIALIZE = 'front.mypage.mypage.delete.initialize'; |
|
443
|
|
|
const FRONT_MYPAGE_MYPAGE_DELETE_COMPLETE = 'front.mypage.mypage.delete.complete'; |
|
444
|
|
|
|
|
445
|
|
|
/** |
|
446
|
|
|
* Mypage/WithdrawController |
|
447
|
|
|
*/ |
|
448
|
|
|
// index |
|
449
|
|
|
const FRONT_MYPAGE_WITHDRAW_INDEX_INITIALIZE = 'front.mypage.withdraw.index.initialize'; |
|
450
|
|
|
const FRONT_MYPAGE_WITHDRAW_INDEX_COMPLETE = 'front.mypage.withdraw.index.complete'; |
|
451
|
|
|
|
|
452
|
|
|
/** |
|
453
|
|
|
* CartController |
|
454
|
|
|
*/ |
|
455
|
|
|
// index |
|
456
|
|
|
const FRONT_CART_INDEX_INITIALIZE = 'front.cart.index.initialize'; |
|
457
|
|
|
const FRONT_CART_INDEX_COMPLETE = 'front.cart.index.complete'; |
|
458
|
|
|
// add |
|
459
|
|
|
const FRONT_CART_ADD_INITIALIZE = 'front.cart.add.initialize'; |
|
460
|
|
|
const FRONT_CART_ADD_COMPLETE = 'front.cart.add.complete'; |
|
461
|
|
|
const FRONT_CART_ADD_EXCEPTION = 'front.cart.add.exception'; |
|
462
|
|
|
|
|
463
|
|
|
// up |
|
464
|
|
|
const FRONT_CART_UP_INITIALIZE = 'front.cart.up.initialize'; |
|
465
|
|
|
const FRONT_CART_UP_COMPLETE = 'front.cart.up.complete'; |
|
466
|
|
|
const FRONT_CART_UP_EXCEPTION = 'front.cart.up.exception'; |
|
467
|
|
|
|
|
468
|
|
|
// down |
|
469
|
|
|
const FRONT_CART_DOWN_INITIALIZE = 'front.cart.down.initialize'; |
|
470
|
|
|
const FRONT_CART_DOWN_COMPLETE = 'front.cart.down.complete'; |
|
471
|
|
|
const FRONT_CART_DOWN_EXCEPTION = 'front.cart.down.exception'; |
|
472
|
|
|
|
|
473
|
|
|
// remove |
|
474
|
|
|
const FRONT_CART_REMOVE_INITIALIZE = 'front.cart.remove.initialize'; |
|
475
|
|
|
const FRONT_CART_REMOVE_COMPLETE = 'front.cart.remove.complete'; |
|
476
|
|
|
|
|
477
|
|
|
// buystep |
|
478
|
|
|
const FRONT_CART_BUYSTEP_INITIALIZE = 'front.cart.buystep.initialize'; |
|
479
|
|
|
const FRONT_CART_BUYSTEP_COMPLETE = 'front.cart.buystep.complete'; |
|
480
|
|
|
|
|
481
|
|
|
|
|
482
|
|
|
/** |
|
483
|
|
|
* ContactController |
|
484
|
|
|
*/ |
|
485
|
|
|
// index |
|
486
|
|
|
const FRONT_CONTACT_INDEX_INITIALIZE = 'front.contact.index.initialize'; |
|
487
|
|
|
const FRONT_CONTACT_INDEX_COMPLETE = 'front.contact.index.complete'; |
|
488
|
|
|
|
|
489
|
|
|
/** |
|
490
|
|
|
* EntryController |
|
491
|
|
|
*/ |
|
492
|
|
|
// index |
|
493
|
|
|
const FRONT_ENTRY_INDEX_INITIALIZE = 'front.entry.index.initialize'; |
|
494
|
|
|
const FRONT_ENTRY_INDEX_COMPLETE = 'front.entry.index.complete'; |
|
495
|
|
|
// activate |
|
496
|
|
|
const FRONT_ENTRY_ACTIVATE_COMPLETE = 'front.entry.activate.complete'; |
|
497
|
|
|
|
|
498
|
|
|
/** |
|
499
|
|
|
* ForgotController |
|
500
|
|
|
*/ |
|
501
|
|
|
// index |
|
502
|
|
|
const FRONT_FORGOT_INDEX_INITIALIZE = 'front.forgot.index.initialize'; |
|
503
|
|
|
const FRONT_FORGOT_INDEX_COMPLETE = 'front.forgot.index.complete'; |
|
504
|
|
|
// reset |
|
505
|
|
|
const FRONT_FORGOT_RESET_COMPLETE = 'front.reset.index.complete'; |
|
506
|
|
|
|
|
507
|
|
|
/** |
|
508
|
|
|
* ProductController |
|
509
|
|
|
*/ |
|
510
|
|
|
// index |
|
511
|
|
|
const FRONT_PRODUCT_INDEX_INITIALIZE = 'front.product.index.initialize'; |
|
512
|
|
|
const FRONT_PRODUCT_INDEX_SEARCH = 'front.product.index.search'; |
|
513
|
|
|
const FRONT_PRODUCT_INDEX_COMPLETE = 'front.product.index.complete'; |
|
514
|
|
|
const FRONT_PRODUCT_INDEX_DISP = 'front.product.index.disp'; |
|
515
|
|
|
const FRONT_PRODUCT_INDEX_ORDER = 'front.product.index.order'; |
|
516
|
|
|
|
|
517
|
|
|
// detail |
|
518
|
|
|
const FRONT_PRODUCT_DETAIL_INITIALIZE = 'front.product.detail.initialize'; |
|
519
|
|
|
const FRONT_PRODUCT_DETAIL_FAVORITE = 'front.product.detail.favorite'; |
|
520
|
|
|
const FRONT_PRODUCT_DETAIL_COMPLETE = 'front.product.detail.complete'; |
|
521
|
|
|
|
|
522
|
|
|
|
|
523
|
|
|
/** |
|
524
|
|
|
* ShoppingController |
|
525
|
|
|
*/ |
|
526
|
|
|
// index |
|
527
|
|
|
const FRONT_SHOPPING_INDEX_INITIALIZE = 'front.shopping.index.initialize'; |
|
528
|
|
|
|
|
529
|
|
|
// confirm |
|
530
|
|
|
const FRONT_SHOPPING_CONFIRM_INITIALIZE = 'front.shopping.confirm.initialize'; |
|
531
|
|
|
const FRONT_SHOPPING_CONFIRM_PROCESSING = 'front.shopping.confirm.processing'; |
|
532
|
|
|
const FRONT_SHOPPING_CONFIRM_COMPLETE = 'front.shopping.confirm.complete'; |
|
533
|
|
|
|
|
534
|
|
|
// complete |
|
535
|
|
|
const FRONT_SHOPPING_COMPLETE_INITIALIZE = 'front.shopping.complete.initialize'; |
|
536
|
|
|
|
|
537
|
|
|
// delivery |
|
538
|
|
|
const FRONT_SHOPPING_DELIVERY_INITIALIZE = 'front.shopping.delivery.initialize'; |
|
539
|
|
|
const FRONT_SHOPPING_DELIVERY_COMPLETE = 'front.shopping.delivery.complete'; |
|
540
|
|
|
|
|
541
|
|
|
// payment |
|
542
|
|
|
const FRONT_SHOPPING_PAYMENT_INITIALIZE = 'front.shopping.payment.initialize'; |
|
543
|
|
|
const FRONT_SHOPPING_PAYMENT_COMPLETE = 'front.shopping.payment.complete'; |
|
544
|
|
|
|
|
545
|
|
|
// shippingChange |
|
546
|
|
|
const FRONT_SHOPPING_SHIPPING_CHANGE_INITIALIZE = 'front.shopping.shipping.change.initialize'; |
|
547
|
|
|
|
|
548
|
|
|
// shipping |
|
549
|
|
|
const FRONT_SHOPPING_SHIPPING_COMPLETE = 'front.shopping.shipping.complete'; |
|
550
|
|
|
|
|
551
|
|
|
// shippingEditChange |
|
552
|
|
|
const FRONT_SHOPPING_SHIPPING_EDIT_CHANGE_INITIALIZE = 'front.shopping.shipping.edit.change.initialize'; |
|
553
|
|
|
|
|
554
|
|
|
// shippingEdit |
|
555
|
|
|
const FRONT_SHOPPING_SHIPPING_EDIT_INITIALIZE = 'front.shopping.shipping.edit.initialize'; |
|
556
|
|
|
const FRONT_SHOPPING_SHIPPING_EDIT_COMPLETE = 'front.shopping.shipping.edit.complete'; |
|
557
|
|
|
|
|
558
|
|
|
// customer |
|
559
|
|
|
const FRONT_SHOPPING_CUSTOMER_INITIALIZE = 'front.shopping.customer.initialize'; |
|
560
|
|
|
|
|
561
|
|
|
// login |
|
562
|
|
|
const FRONT_SHOPPING_LOGIN_INITIALIZE = 'front.shopping.login.initialize'; |
|
563
|
|
|
|
|
564
|
|
|
// nonmember |
|
565
|
|
|
const FRONT_SHOPPING_NONMEMBER_INITIALIZE = 'front.shopping.nonmember.initialize'; |
|
566
|
|
|
const FRONT_SHOPPING_NONMEMBER_COMPLETE = 'front.shopping.nonmember.complete'; |
|
567
|
|
|
|
|
568
|
|
|
// shippingMultipleChange |
|
569
|
|
|
const FRONT_SHOPPING_SHIPPING_MULTIPLE_CHANGE_INITIALIZE = 'front.shopping.shipping.multiple.change.initialize'; |
|
570
|
|
|
|
|
571
|
|
|
// shippingMultiple |
|
572
|
|
|
const FRONT_SHOPPING_SHIPPING_MULTIPLE_INITIALIZE = 'front.shopping.shipping.multiple.initialize'; |
|
573
|
|
|
const FRONT_SHOPPING_SHIPPING_MULTIPLE_COMPLETE = 'front.shopping.shipping.multiple.complete'; |
|
574
|
|
|
|
|
575
|
|
|
// shippingMultipleEdit |
|
576
|
|
|
const FRONT_SHOPPING_SHIPPING_MULTIPLE_EDIT_INITIALIZE = 'front.shopping.shipping.multiple.edit.initialize'; |
|
577
|
|
|
const FRONT_SHOPPING_SHIPPING_MULTIPLE_EDIT_COMPLETE = 'front.shopping.shipping.multiple.edit.complete'; |
|
578
|
|
|
|
|
579
|
|
|
// shippingError |
|
580
|
|
|
const FRONT_SHOPPING_SHIPPING_ERROR_COMPLETE = 'front.shopping.shipping.error.complete'; |
|
581
|
|
|
|
|
582
|
|
|
|
|
583
|
|
|
/** |
|
584
|
|
|
* UserDataController |
|
585
|
|
|
*/ |
|
586
|
|
|
// index |
|
587
|
|
|
const FRONT_USER_DATA_INDEX_INITIALIZE = 'front.user.data.index.initialize'; |
|
588
|
|
|
|
|
589
|
|
|
|
|
590
|
|
|
/** |
|
591
|
|
|
* MailService |
|
592
|
|
|
*/ |
|
593
|
|
|
const MAIL_CUSTOMER_CONFIRM = 'mail.customer.confirm'; |
|
594
|
|
|
const MAIL_CUSTOMER_COMPLETE = 'mail.customer.complete'; |
|
595
|
|
|
const MAIL_CUSTOMER_WITHDRAW = 'mail.customer.withdraw'; |
|
596
|
|
|
const MAIL_CONTACT = 'mail.contact'; |
|
597
|
|
|
const MAIL_ORDER = 'mail.order'; |
|
598
|
|
|
const MAIL_ADMIN_CUSTOMER_CONFIRM = 'mail.admin.customer.confirm'; |
|
599
|
|
|
const MAIL_ADMIN_ORDER = 'mail.admin.order'; |
|
600
|
|
|
const MAIL_PASSWORD_RESET = 'mail.password.reset'; |
|
601
|
|
|
const MAIL_PASSWORD_RESET_COMPLETE = 'mail.password.reset.complete'; |
|
602
|
|
|
|
|
603
|
|
|
/** |
|
604
|
|
|
* ShoppingService |
|
605
|
|
|
*/ |
|
606
|
|
|
const SERVICE_SHOPPING_ORDER_STATUS = 'service.shopping.order.status'; |
|
607
|
|
|
const SERVICE_SHOPPING_NOTIFY_COMPLETE = 'service.shopping.notify.complete'; |
|
608
|
|
|
|
|
609
|
|
|
} |