|
@@ 350-356 (lines=7) @@
|
| 347 |
|
|
| 348 |
|
} |
| 349 |
|
|
| 350 |
|
public function handler_up(Application $app, $handlerId) |
| 351 |
|
{ |
| 352 |
|
$repo = $app['eccube.repository.plugin_event_handler']; |
| 353 |
|
$repo->upPriority($repo->find($handlerId)); |
| 354 |
|
|
| 355 |
|
return $app->redirect($app->url('admin_store_plugin_handler')); |
| 356 |
|
} |
| 357 |
|
|
| 358 |
|
public function handler_down(Application $app, $handlerId) |
| 359 |
|
{ |
|
@@ 358-364 (lines=7) @@
|
| 355 |
|
return $app->redirect($app->url('admin_store_plugin_handler')); |
| 356 |
|
} |
| 357 |
|
|
| 358 |
|
public function handler_down(Application $app, $handlerId) |
| 359 |
|
{ |
| 360 |
|
$repo = $app['eccube.repository.plugin_event_handler']; |
| 361 |
|
$repo->upPriority($repo->find($handlerId), false); |
| 362 |
|
|
| 363 |
|
return $app->redirect($app->url('admin_store_plugin_handler')); |
| 364 |
|
} |
| 365 |
|
|
| 366 |
|
/** |
| 367 |
|
* プラグインファイルアップロード画面 |