From feac619578e35a8f166bb5355a68346a487125d1 Mon Sep 17 00:00:00 2001 From: Awilum Date: Mon, 13 May 2019 12:48:50 +0300 Subject: [PATCH] Flextype Box Plugin: Admin #125 #117 - Entries Controller/Views implementation --- .../admin/app/Controllers/EntriesController.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/site/plugins/admin/app/Controllers/EntriesController.php b/site/plugins/admin/app/Controllers/EntriesController.php index 599b06a5..d0dc7168 100644 --- a/site/plugins/admin/app/Controllers/EntriesController.php +++ b/site/plugins/admin/app/Controllers/EntriesController.php @@ -162,4 +162,19 @@ class EntriesController extends Controller return $response->withRedirect($this->container->get('router')->urlFor('admin.entries.index') . '?entry=' . $data['parent_entry']); } } + + public function type($request, $response, $args) + { + + } + + public function move($request, $response, $args) + { + + } + + public function rename($request, $response, $args) + { + + } }