@@ 323-329 (lines=7) @@ | ||
320 | ||
321 | } |
|
322 | ||
323 | public function handler_up(Application $app, $handlerId) |
|
324 | { |
|
325 | $repo = $app['eccube.repository.plugin_event_handler']; |
|
326 | $repo->upPriority($repo->find($handlerId)); |
|
327 | ||
328 | return $app->redirect($app->url('admin_store_plugin_handler')); |
|
329 | } |
|
330 | ||
331 | public function handler_down(Application $app, $handlerId) |
|
332 | { |
|
@@ 331-337 (lines=7) @@ | ||
328 | return $app->redirect($app->url('admin_store_plugin_handler')); |
|
329 | } |
|
330 | ||
331 | public function handler_down(Application $app, $handlerId) |
|
332 | { |
|
333 | $repo = $app['eccube.repository.plugin_event_handler']; |
|
334 | $repo->upPriority($repo->find($handlerId), false); |
|
335 | ||
336 | return $app->redirect($app->url('admin_store_plugin_handler')); |
|
337 | } |
|
338 | ||
339 | /** |
|
340 | * プラグインファイルアップロード画面 |