This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include
, or for example
via PHP's auto-loading mechanism.
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
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 |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
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 | |||
126 | |||
127 | /** |
||
128 | * Admin/Customer/CustomerEditController |
||
129 | */ |
||
130 | // index |
||
131 | const ADMIN_CUSTOMER_EDIT_INDEX_INITIALIZE = 'admin.customer.edit.index.initialize'; |
||
132 | const ADMIN_CUSTOMER_EDIT_INDEX_COMPLETE = 'admin.customer.edit.index.complete'; |
||
133 | |||
134 | |||
135 | /** |
||
136 | * Admin/Order/EditController |
||
137 | */ |
||
138 | // index |
||
139 | const ADMIN_ORDER_EDIT_INDEX_INITIALIZE = 'admin.order.edit.index.initialize'; |
||
140 | const ADMIN_ORDER_EDIT_INDEX_PROGRESS = 'admin.order.edit.index.progress'; |
||
141 | const ADMIN_ORDER_EDIT_INDEX_COMPLETE = 'admin.order.edit.index.complete'; |
||
142 | |||
143 | // searchCustomer |
||
144 | const ADMIN_ORDER_EDIT_SEARCH_CUSTOMER_INITIALIZE = 'admin.order.edit.search.customer.initialize'; |
||
145 | const ADMIN_ORDER_EDIT_SEARCH_CUSTOMER_SEARCH = 'admin.order.edit.search.customer.search'; |
||
146 | const ADMIN_ORDER_EDIT_SEARCH_CUSTOMER_COMPLETE = 'admin.order.edit.search.customer.complete'; |
||
147 | |||
148 | // searchCustomerById |
||
149 | const ADMIN_ORDER_EDIT_SEARCH_CUSTOMER_BY_ID_INITIALIZE = 'admin.order.edit.search.customer.by.id.initialize'; |
||
150 | const ADMIN_ORDER_EDIT_SEARCH_CUSTOMER_BY_ID_COMPLETE = 'admin.order.edit.search.customer.by.id.complete'; |
||
151 | |||
152 | // searchProduct |
||
153 | const ADMIN_ORDER_EDIT_SEARCH_PRODUCT_INITIALIZE = 'admin.order.edit.search.product.initialize'; |
||
154 | const ADMIN_ORDER_EDIT_SEARCH_PRODUCT_SEARCH = 'admin.order.edit.search.product.search'; |
||
155 | const ADMIN_ORDER_EDIT_SEARCH_PRODUCT_COMPLETE = 'admin.order.edit.search.product.complete'; |
||
156 | |||
157 | |||
158 | /** |
||
159 | * Admin/Order/MailController |
||
160 | */ |
||
161 | // index |
||
162 | const ADMIN_ORDER_MAIL_INDEX_INITIALIZE = 'admin.order.mail.index.initialize'; |
||
163 | const ADMIN_ORDER_MAIL_INDEX_CHANGE = 'admin.order.mail.index.change'; |
||
164 | const ADMIN_ORDER_MAIL_INDEX_CONFIRM = 'admin.order.mail.index.confirm'; |
||
165 | const ADMIN_ORDER_MAIL_INDEX_COMPLETE = 'admin.order.mail.index.complete'; |
||
166 | |||
167 | // view |
||
168 | const ADMIN_ORDER_MAIL_VIEW_COMPLETE = 'admin.order.mail.view.complete'; |
||
169 | |||
170 | // mailAll |
||
171 | const ADMIN_ORDER_MAIL_MAIL_ALL_INITIALIZE = 'admin.order.mail.mail.all.initialize'; |
||
172 | const ADMIN_ORDER_MAIL_MAIL_ALL_CHANGE = 'admin.order.mail.mail.all.change'; |
||
173 | const ADMIN_ORDER_MAIL_MAIL_ALL_CONFIRM = 'admin.order.mail.mail.all.confirm'; |
||
174 | const ADMIN_ORDER_MAIL_MAIL_ALL_COMPLETE = 'admin.order.mail.mail.all.complete'; |
||
175 | |||
176 | |||
177 | /** |
||
178 | * Admin/Order/OrderController |
||
179 | */ |
||
180 | // index |
||
181 | const ADMIN_ORDER_INDEX_INITIALIZE = 'admin.order.index.initialize'; |
||
182 | const ADMIN_ORDER_INDEX_SEARCH = 'admin.order.index.search'; |
||
183 | |||
184 | // delete |
||
185 | const ADMIN_ORDER_DELETE_COMPLETE = 'admin.order.delete.complete'; |
||
186 | |||
187 | // exportOrder |
||
188 | |||
189 | // exportShipping |
||
190 | |||
191 | |||
192 | /** |
||
193 | * Admin/Product/CategoryController |
||
194 | */ |
||
195 | // index |
||
196 | const ADMIN_PRODUCT_CATEGORY_INDEX_INITIALIZE = 'admin.product.category.index.initialize'; |
||
197 | const ADMIN_PRODUCT_CATEGORY_INDEX_COMPLETE = 'admin.product.category.index.complete'; |
||
198 | |||
199 | // delete |
||
200 | const ADMIN_PRODUCT_CATEGORY_DELETE_COMPLETE = 'admin.product.category.delete.complete'; |
||
201 | |||
202 | // export |
||
203 | |||
204 | |||
205 | /** |
||
206 | * Admin/Product/ClassCategoryController |
||
207 | */ |
||
208 | // index |
||
209 | const ADMIN_PRODUCT_CLASS_CATEGORY_INDEX_INITIALIZE = 'admin.product.class.category.index.initialize'; |
||
210 | const ADMIN_PRODUCT_CLASS_CATEGORY_INDEX_COMPLETE = 'admin.product.class.category.index.complete'; |
||
211 | |||
212 | // delete |
||
213 | const ADMIN_PRODUCT_CLASS_CATEGORY_DELETE_COMPLETE = 'admin.product.class.category.delete.complete'; |
||
214 | |||
215 | |||
216 | /** |
||
217 | * Admin/Product/ClassNameController |
||
218 | */ |
||
219 | // index |
||
220 | const ADMIN_PRODUCT_CLASS_NAME_INDEX_INITIALIZE = 'admin.product.class.name.index.initialize'; |
||
221 | const ADMIN_PRODUCT_CLASS_NAME_INDEX_COMPLETE = 'admin.product.class.name.index.complete'; |
||
222 | |||
223 | // delete |
||
224 | const ADMIN_PRODUCT_CLASS_NAME_DELETE_COMPLETE = 'admin.product.class.name.delete.complete'; |
||
225 | |||
226 | |||
227 | /** |
||
228 | * Admin/Product/CsvImportController |
||
229 | */ |
||
230 | // csvProduct |
||
231 | |||
232 | // csvCatgory |
||
233 | |||
234 | // csvTemplate |
||
235 | |||
236 | |||
237 | /** |
||
238 | * Admin/Product/ProductClassController |
||
239 | */ |
||
240 | // index |
||
241 | const ADMIN_PRODUCT_PRODUCT_CLASS_INDEX_INITIALIZE = 'admin.product.product.class.index.initialize'; |
||
242 | const ADMIN_PRODUCT_PRODUCT_CLASS_INDEX_CLASSES = 'admin.product.product.class.index.classes'; |
||
243 | |||
244 | // edit |
||
245 | const ADMIN_PRODUCT_PRODUCT_CLASS_EDIT_INITIALIZE = 'admin.product.product.class.edit.initialize'; |
||
246 | const ADMIN_PRODUCT_PRODUCT_CLASS_EDIT_COMPLETE = 'admin.product.product.class.edit.complete'; |
||
247 | const ADMIN_PRODUCT_PRODUCT_CLASS_EDIT_UPDATE = 'admin.product.product.class.edit.update'; |
||
248 | const ADMIN_PRODUCT_PRODUCT_CLASS_EDIT_DELETE = 'admin.product.product.class.edit.delete'; |
||
249 | |||
250 | |||
251 | /** |
||
252 | * Admin/Product/ProductController |
||
253 | */ |
||
254 | // index |
||
255 | const ADMIN_PRODUCT_INDEX_INITIALIZE = 'admin.product.index.initialize'; |
||
256 | const ADMIN_PRODUCT_INDEX_SEARCH = 'admin.product.index.search'; |
||
257 | |||
258 | // addImage |
||
259 | const ADMIN_PRODUCT_ADD_IMAGE_COMPLETE = 'admin.product.add.image.complete'; |
||
260 | |||
261 | // edit |
||
262 | const ADMIN_PRODUCT_EDIT_INITIALIZE = 'admin.product.edit.initialize'; |
||
263 | const ADMIN_PRODUCT_EDIT_SEARCH = 'admin.product.edit.search'; |
||
264 | const ADMIN_PRODUCT_EDIT_COMPLETE = 'admin.product.edit.complete'; |
||
265 | |||
266 | // delete |
||
267 | const ADMIN_PRODUCT_DELETE_COMPLETE = 'admin.product.delete.complete'; |
||
268 | |||
269 | // copy |
||
270 | const ADMIN_PRODUCT_COPY_COMPLETE = 'admin.product.copy.complete'; |
||
271 | |||
272 | // display |
||
273 | const ADMIN_PRODUCT_DISPLAY_COMPLETE = 'admin.product.display.complete'; |
||
274 | |||
275 | // export |
||
276 | |||
277 | |||
278 | /** |
||
279 | * Admin/Setting/Shop/CsvController |
||
280 | */ |
||
281 | // index |
||
282 | const ADMIN_SETTING_SHOP_CSV_INDEX_INITIALIZE = 'admin.setting.shop.csv.index.initialize'; |
||
283 | const ADMIN_SETTING_SHOP_CSV_INDEX_COMPLETE = 'admin.setting.shop.csv.index.complete'; |
||
284 | |||
285 | /** |
||
286 | * Admin/Setting/Shop/CustomerAgreementController |
||
287 | */ |
||
288 | // index |
||
289 | const ADMIN_SETTING_SHOP_CUSTOMER_AGREEMENT_INDEX_INITIALIZE = 'admin.setting.shop.customer.agreement.index.initialize'; |
||
290 | const ADMIN_SETTING_SHOP_CUSTOMER_AGREEMENT_INDEX_COMPLETE = 'admin.setting.shop.customer.agreement.index.complete'; |
||
291 | |||
292 | /** |
||
293 | * Admin/Setting/Shop/DeliveryController |
||
294 | */ |
||
295 | // index |
||
296 | const ADMIN_SETTING_SHOP_DELIVERY_INDEX_COMPLETE = 'admin.setting.shop.delivery.index.complete'; |
||
297 | // edit |
||
298 | const ADMIN_SETTING_SHOP_DELIVERY_EDIT_INITIALIZE = 'admin.setting.shop.delivery.edit.initialize'; |
||
299 | const ADMIN_SETTING_SHOP_DELIVERY_EDIT_COMPLETE = 'admin.setting.shop.delivery.edit.complete'; |
||
300 | // delete |
||
301 | const ADMIN_SETTING_SHOP_DELIVERY_DELETE_COMPLETE = 'admin.setting.shop.delivery.delete.complete'; |
||
302 | |||
303 | /** |
||
304 | * Admin/Setting/Shop/MailController |
||
305 | */ |
||
306 | // index |
||
307 | const ADMIN_SETTING_SHOP_MAIL_INDEX_INITIALIZE = 'admin.setting.shop.mail.index.initialize'; |
||
308 | const ADMIN_SETTING_SHOP_MAIL_INDEX_COMPLETE = 'admin.setting.shop.mail.index.complete'; |
||
309 | |||
310 | /** |
||
311 | * Admin/Setting/Shop/PaymentController |
||
312 | */ |
||
313 | // index |
||
314 | const ADMIN_SETTING_SHOP_PAYMENT_INDEX_COMPLETE = 'admin.setting.shop.payment.index.complete'; |
||
315 | // edit |
||
316 | const ADMIN_SETTING_SHOP_PAYMENT_EDIT_INITIALIZE = 'admin.setting.shop.payment.edit.initialize'; |
||
317 | const ADMIN_SETTING_SHOP_PAYMENT_EDIT_COMPLETE = 'admin.setting.shop.payment.edit.complete'; |
||
318 | // imageAdd |
||
319 | const ADMIN_SETTING_SHOP_PAYMENT_IMAGE_ADD_COMPLETE = 'admin.setting.shop.payment.image.add.complete'; |
||
320 | // delete |
||
321 | const ADMIN_SETTING_SHOP_PAYMENT_DELETE_COMPLETE = 'admin.setting.shop.payment.delete.complete'; |
||
322 | |||
323 | /** |
||
324 | * Admin/Setting/Shop/ShopController |
||
325 | */ |
||
326 | // index |
||
327 | const ADMIN_SETTING_SHOP_SHOP_INDEX_INITIALIZE = 'admin.setting.shop.shop.index.initialize'; |
||
328 | const ADMIN_SETTING_SHOP_SHOP_INDEX_COMPLETE = 'admin.setting.shop.shop.index.complete'; |
||
329 | |||
330 | /** |
||
331 | * Admin/Setting/Shop/TaxRuleController |
||
332 | */ |
||
333 | // index |
||
334 | const ADMIN_SETTING_SHOP_TAX_RULE_INDEX_INITIALIZE = 'admin.setting.shop.tax.rule.index.initialize'; |
||
335 | const ADMIN_SETTING_SHOP_TAX_RULE_INDEX_COMPLETE = 'admin.setting.shop.tax.rule.index.complete'; |
||
336 | // delete |
||
337 | const ADMIN_SETTING_SHOP_TAX_RULE_DELETE_COMPLETE = 'admin.setting.shop.tax.rule.delete.complete'; |
||
338 | // editParameter |
||
339 | const ADMIN_SETTING_SHOP_TAX_RULE_EDIT_PARAMETER_INITIALIZE = 'admin.setting.shop.tax.rule.edit.parameter.initialize'; |
||
340 | const ADMIN_SETTING_SHOP_TAX_RULE_EDIT_PARAMETER_COMPLETE = 'admin.setting.shop.tax.rule.edit.parameter.complete'; |
||
341 | |||
342 | /** |
||
343 | * Admin/Setting/Shop/TradelawController |
||
344 | */ |
||
345 | // index |
||
346 | const ADMIN_SETTING_SHOP_TRADE_LAW_INDEX_INITIALIZE = 'admin.setting.shop.trade.law.index.initialize'; |
||
347 | const ADMIN_SETTING_SHOP_TRADE_LAW_INDEX_COMPLETE = 'admin.setting.shop.trade.law.index.complete'; |
||
348 | |||
349 | /** |
||
350 | * Admin/Setting/System/AuthorityController |
||
351 | */ |
||
352 | // index |
||
353 | const ADMIN_SETTING_SYSTEM_AUTHORITY_INDEX_INITIALIZE = 'admin.setting.system.authority.index.initialize'; |
||
354 | const ADMIN_SETTING_SYSTEM_AUTHORITY_INDEX_COMPLETE = 'admin.setting.system.authority.index.complete'; |
||
355 | |||
356 | |||
357 | /** |
||
358 | * Admin/Setting/System/LogController |
||
359 | */ |
||
360 | // index |
||
361 | const ADMIN_SETTING_SYSTEM_LOG_INDEX_INITIALIZE = 'admin.setting.system.log.index.initialize'; |
||
362 | const ADMIN_SETTING_SYSTEM_LOG_INDEX_COMPLETE = 'admin.setting.system.log.index.complete'; |
||
363 | |||
364 | |||
365 | /** |
||
366 | * Admin/Setting/System/MasterdataController |
||
367 | */ |
||
368 | // index |
||
369 | const ADMIN_SETTING_SYSTEM_MASTERDATA_INDEX_INITIALIZE = 'admin.setting.system.masterdata.index.initialize'; |
||
370 | const ADMIN_SETTING_SYSTEM_MASTERDATA_INDEX_FORM2_INITIALIZE = 'admin.setting.system.masterdata.index.form2.initialize'; |
||
371 | const ADMIN_SETTING_SYSTEM_MASTERDATA_INDEX_COMPLETE = 'admin.setting.system.masterdata.index.complete'; |
||
372 | |||
373 | // edit |
||
374 | const ADMIN_SETTING_SYSTEM_MASTERDATA_EDIT_INITIALIZE = 'admin.setting.system.masterdata.edit.initialize'; |
||
375 | const ADMIN_SETTING_SYSTEM_MASTERDATA_EDIT_FORM_INITIALIZE = 'admin.setting.system.masterdata.edit.form.initialize'; |
||
376 | const ADMIN_SETTING_SYSTEM_MASTERDATA_EDIT_COMPLETE = 'admin.setting.system.masterdata.edit.complete'; |
||
377 | |||
378 | |||
379 | /** |
||
380 | * Admin/Setting/System/MemberController |
||
381 | */ |
||
382 | // index |
||
383 | const ADMIN_SETTING_SYSTEM_MEMBER_INDEX_INITIALIZE = 'admin.setting.system.member.index.initialize'; |
||
384 | |||
385 | // edit |
||
386 | const ADMIN_SETTING_SYSTEM_MEMBER_EDIT_INITIALIZE = 'admin.setting.system.member.edit.initialize'; |
||
387 | const ADMIN_SETTING_SYSTEM_MEMBER_EDIT_COMPLETE = 'admin.setting.system.member.edit.complete'; |
||
388 | |||
389 | // delete |
||
390 | const ADMIN_SETTING_SYSTEM_MEMBER_DELETE_INITIALIZE = 'admin.setting.system.member.delete.initialize'; |
||
391 | const ADMIN_SETTING_SYSTEM_MEMBER_DELETE_COMPLETE = 'admin.setting.system.member.delete.complete'; |
||
392 | |||
393 | |||
394 | /** |
||
395 | * Block/SearchProductController |
||
396 | */ |
||
397 | // index |
||
398 | const FRONT_BLOCK_SEARCH_PRODUCT_INDEX_INITIALIZE = 'front.block.search.product.index.initialize'; |
||
399 | |||
400 | /** |
||
401 | * Mypage/ChangeController |
||
402 | */ |
||
403 | // index |
||
404 | const FRONT_MYPAGE_CHANGE_INDEX_INITIALIZE = 'front.mypage.change.index.initialize'; |
||
405 | const FRONT_MYPAGE_CHANGE_INDEX_COMPLETE = 'front.mypage.change.index.complete'; |
||
406 | |||
407 | /** |
||
408 | * Mypage/DeliveryController |
||
409 | */ |
||
410 | // edit |
||
411 | const FRONT_MYPAGE_DELIVERY_EDIT_INITIALIZE = 'front.mypage.delivery.edit.initialize'; |
||
412 | const FRONT_MYPAGE_DELIVERY_EDIT_COMPLETE = 'front.mypage.delivery.edit.complete'; |
||
413 | |||
414 | // delete |
||
415 | const FRONT_MYPAGE_DELIVERY_DELETE_COMPLETE = 'front.mypage.delete.complete'; |
||
416 | |||
417 | /** |
||
418 | * Mypage/MypageController |
||
419 | */ |
||
420 | // login |
||
421 | const FRONT_MYPAGE_MYPAGE_LOGIN_INITIALIZE = 'front.mypage.mypage.login.initialize'; |
||
422 | |||
423 | // index |
||
424 | const FRONT_MYPAGE_MYPAGE_INDEX_SEARCH = 'front.mypage.mypage.index.search'; |
||
425 | |||
426 | // history |
||
427 | const FRONT_MYPAGE_MYPAGE_HISTORY_INITIALIZE = 'front.mypage.mypage.history.initialize'; |
||
428 | |||
429 | // order |
||
430 | const FRONT_MYPAGE_MYPAGE_ORDER_INITIALIZE = 'front.mypage.mypage.order.initialize'; |
||
431 | const FRONT_MYPAGE_MYPAGE_ORDER_COMPLETE = 'front.mypage.mypage.order.complete'; |
||
432 | |||
433 | // favorite |
||
434 | const FRONT_MYPAGE_MYPAGE_FAVORITE_SEARCH = 'front.mypage.mypage.favorite.search'; |
||
435 | |||
436 | // delete |
||
437 | const FRONT_MYPAGE_MYPAGE_DELETE_INITIALIZE = 'front.mypage.mypage.delete.initialize'; |
||
438 | const FRONT_MYPAGE_MYPAGE_DELETE_COMPLETE = 'front.mypage.mypage.delete.complete'; |
||
439 | |||
440 | /** |
||
441 | * Mypage/WithdrawController |
||
442 | */ |
||
443 | // index |
||
444 | const FRONT_MYPAGE_WITHDRAW_INDEX_INITIALIZE = 'front.mypage.withdraw.index.initialize'; |
||
445 | const FRONT_MYPAGE_WITHDRAW_INDEX_COMPLETE = 'front.mypage.withdraw.index.complete'; |
||
446 | |||
447 | /** |
||
448 | * CartController |
||
449 | */ |
||
450 | // index |
||
451 | const FRONT_CART_INDEX_INITIALIZE = 'front.cart.index.initialize'; |
||
452 | const FRONT_CART_INDEX_COMPLETE = 'front.cart.index.complete'; |
||
453 | // add |
||
454 | const FRONT_CART_ADD_INITIALIZE = 'front.cart.add.initialize'; |
||
455 | const FRONT_CART_ADD_COMPLETE = 'front.cart.add.complete'; |
||
456 | const FRONT_CART_ADD_EXCEPTION = 'front.cart.add.exception'; |
||
457 | |||
458 | // up |
||
459 | const FRONT_CART_UP_INITIALIZE = 'front.cart.up.initialize'; |
||
460 | const FRONT_CART_UP_COMPLETE = 'front.cart.up.complete'; |
||
461 | const FRONT_CART_UP_EXCEPTION = 'front.cart.up.exception'; |
||
462 | |||
463 | // down |
||
464 | const FRONT_CART_DOWN_INITIALIZE = 'front.cart.down.initialize'; |
||
465 | const FRONT_CART_DOWN_COMPLETE = 'front.cart.down.complete'; |
||
466 | const FRONT_CART_DOWN_EXCEPTION = 'front.cart.down.exception'; |
||
467 | |||
468 | // remove |
||
469 | const FRONT_CART_REMOVE_INITIALIZE = 'front.cart.remove.initialize'; |
||
470 | const FRONT_CART_REMOVE_COMPLETE = 'front.cart.remove.complete'; |
||
471 | |||
472 | // buystep |
||
473 | const FRONT_CART_BUYSTEP_INITIALIZE = 'front.cart.buystep.initialize'; |
||
474 | const FRONT_CART_BUYSTEP_COMPLETE = 'front.cart.buystep.complete'; |
||
475 | |||
476 | |||
477 | /** |
||
478 | * ContactController |
||
479 | */ |
||
480 | // index |
||
481 | const FRONT_CONTACT_INDEX_INITIALIZE = 'front.contact.index.initialize'; |
||
482 | const FRONT_CONTACT_INDEX_COMPLETE = 'front.contact.index.complete'; |
||
483 | |||
484 | /** |
||
485 | * EntryController |
||
486 | */ |
||
487 | // index |
||
488 | const FRONT_ENTRY_INDEX_INITIALIZE = 'front.entry.index.initialize'; |
||
489 | const FRONT_ENTRY_INDEX_COMPLETE = 'front.entry.index.complete'; |
||
490 | // activate |
||
491 | const FRONT_ENTRY_ACTIVATE_COMPLETE = 'front.entry.activate.complete'; |
||
492 | |||
493 | /** |
||
494 | * ForgotController |
||
495 | */ |
||
496 | // index |
||
497 | const FRONT_FORGOT_INDEX_INITIALIZE = 'front.forgot.index.initialize'; |
||
498 | const FRONT_FORGOT_INDEX_COMPLETE = 'front.forgot.index.complete'; |
||
499 | // reset |
||
500 | const FRONT_FORGOT_RESET_COMPLETE = 'front.reset.index.complete'; |
||
501 | |||
502 | /** |
||
503 | * ProductController |
||
504 | */ |
||
505 | // index |
||
506 | const FRONT_PRODUCT_INDEX_INITIALIZE = 'front.product.index.initialize'; |
||
507 | const FRONT_PRODUCT_INDEX_SEARCH = 'front.product.index.search'; |
||
508 | const FRONT_PRODUCT_INDEX_COMPLETE = 'front.product.index.complete'; |
||
509 | const FRONT_PRODUCT_INDEX_DISP = 'front.product.index.disp'; |
||
510 | const FRONT_PRODUCT_INDEX_ORDER = 'front.product.index.order'; |
||
511 | |||
512 | // detail |
||
513 | const FRONT_PRODUCT_DETAIL_INITIALIZE = 'front.product.detail.initialize'; |
||
514 | const FRONT_PRODUCT_DETAIL_FAVORITE = 'front.product.detail.favorite'; |
||
515 | const FRONT_PRODUCT_DETAIL_COMPLETE = 'front.product.detail.complete'; |
||
516 | |||
517 | |||
518 | /** |
||
519 | * ShoppingController |
||
520 | */ |
||
521 | // index |
||
522 | const FRONT_SHOPPING_INDEX_INITIALIZE = 'front.shopping.index.initialize'; |
||
523 | |||
524 | // confirm |
||
525 | const FRONT_SHOPPING_CONFIRM_INITIALIZE = 'front.shopping.confirm.initialize'; |
||
526 | const FRONT_SHOPPING_CONFIRM_PROCESSING = 'front.shopping.confirm.processing'; |
||
527 | const FRONT_SHOPPING_CONFIRM_COMPLETE = 'front.shopping.confirm.complete'; |
||
528 | |||
529 | // complete |
||
530 | const FRONT_SHOPPING_COMPLETE_INITIALIZE = 'front.shopping.complete.initialize'; |
||
531 | |||
532 | // delivery |
||
533 | const FRONT_SHOPPING_DELIVERY_INITIALIZE = 'front.shopping.delivery.initialize'; |
||
534 | const FRONT_SHOPPING_DELIVERY_COMPLETE = 'front.shopping.delivery.complete'; |
||
535 | |||
536 | // payment |
||
537 | const FRONT_SHOPPING_PAYMENT_INITIALIZE = 'front.shopping.payment.initialize'; |
||
538 | const FRONT_SHOPPING_PAYMENT_COMPLETE = 'front.shopping.payment.complete'; |
||
539 | |||
540 | // shippingChange |
||
541 | const FRONT_SHOPPING_SHIPPING_CHANGE_INITIALIZE = 'front.shopping.shipping.change.initialize'; |
||
542 | |||
543 | // shipping |
||
544 | const FRONT_SHOPPING_SHIPPING_COMPLETE = 'front.shopping.shipping.complete'; |
||
545 | |||
546 | // shippingEditChange |
||
547 | const FRONT_SHOPPING_SHIPPING_EDIT_CHANGE_INITIALIZE = 'front.shopping.shipping.edit.change.initialize'; |
||
548 | |||
549 | // shippingEdit |
||
550 | const FRONT_SHOPPING_SHIPPING_EDIT_INITIALIZE = 'front.shopping.shipping.edit.initialize'; |
||
551 | const FRONT_SHOPPING_SHIPPING_EDIT_COMPLETE = 'front.shopping.shipping.edit.complete'; |
||
552 | |||
553 | // customer |
||
554 | const FRONT_SHOPPING_CUSTOMER_INITIALIZE = 'front.shopping.customer.initialize'; |
||
555 | |||
556 | // login |
||
557 | const FRONT_SHOPPING_LOGIN_INITIALIZE = 'front.shopping.login.initialize'; |
||
558 | |||
559 | // nonmember |
||
560 | const FRONT_SHOPPING_NONMEMBER_INITIALIZE = 'front.shopping.nonmember.initialize'; |
||
561 | const FRONT_SHOPPING_NONMEMBER_COMPLETE = 'front.shopping.nonmember.complete'; |
||
562 | |||
563 | // shippingMultipleChange |
||
564 | const FRONT_SHOPPING_SHIPPING_MULTIPLE_CHANGE_INITIALIZE = 'front.shopping.shipping.multiple.change.initialize'; |
||
565 | |||
566 | // shippingMultiple |
||
567 | const FRONT_SHOPPING_SHIPPING_MULTIPLE_INITIALIZE = 'front.shopping.shipping.multiple.initialize'; |
||
568 | const FRONT_SHOPPING_SHIPPING_MULTIPLE_COMPLETE = 'front.shopping.shipping.multiple.complete'; |
||
569 | |||
570 | // shippingMultipleEdit |
||
571 | const FRONT_SHOPPING_SHIPPING_MULTIPLE_EDIT_INITIALIZE = 'front.shopping.shipping.multiple.edit.initialize'; |
||
572 | const FRONT_SHOPPING_SHIPPING_MULTIPLE_EDIT_COMPLETE = 'front.shopping.shipping.multiple.edit.complete'; |
||
573 | |||
574 | // shippingError |
||
575 | const FRONT_SHOPPING_SHIPPING_ERROR_COMPLETE = 'front.shopping.shipping.error.complete'; |
||
576 | |||
577 | |||
578 | /** |
||
579 | * UserDataController |
||
580 | */ |
||
581 | // index |
||
582 | const FRONT_USER_DATA_INDEX_INITIALIZE = 'front.user.data.index.initialize'; |
||
583 | |||
584 | |||
585 | /** |
||
586 | * MailService |
||
587 | */ |
||
588 | const MAIL_CUSTOMER_CONFIRM = 'mail.customer.confirm'; |
||
589 | const MAIL_CUSTOMER_COMPLETE = 'mail.customer.complete'; |
||
590 | const MAIL_CUSTOMER_WITHDRAW = 'mail.customer.withdraw'; |
||
591 | const MAIL_CONTACT = 'mail.contact'; |
||
592 | const MAIL_ORDER = 'mail.order'; |
||
593 | const MAIL_ADMIN_CUSTOMER_CONFIRM = 'mail.admin.customer.confirm'; |
||
594 | const MAIL_ADMIN_ORDER = 'mail.admin.order'; |
||
595 | const MAIL_PASSWORD_RESET = 'mail.password.reset'; |
||
596 | const MAIL_PASSWORD_RESET_COMPLETE = 'mail.password.reset.complete'; |
||
597 | |||
598 | /** |
||
599 | * ShoppingService |
||
600 | */ |
||
601 | const SERVICE_SHOPPING_ORDER_STATUS = 'service.shopping.order.status'; |
||
602 | const SERVICE_SHOPPING_NOTIFY_COMPLETE = 'service.shopping.notify.complete'; |
||
603 | |||
604 | } |