@@ -60,12 +60,12 @@ discard block |
||
60 | 60 | public function index() : \Psr\Http\Message\ResponseInterface |
61 | 61 | { |
62 | 62 | $params = $this->request->getQueryParams(); |
63 | - $page = isset($params['page']) ? $params['page'] : 1; |
|
64 | - $limit = isset($params['limit']) ? $params['limit'] : 15; |
|
63 | + $page = isset($params[ 'page' ]) ? $params[ 'page' ] : 1; |
|
64 | + $limit = isset($params[ 'limit' ]) ? $params[ 'limit' ] : 15; |
|
65 | 65 | |
66 | 66 | $categories = $this->categoryService->getPagination($page, $limit); |
67 | 67 | |
68 | - return new HtmlResponse($this->template->render('category::index/index', ['list' => $categories, 'layout' => 'layout/admin'])); |
|
68 | + return new HtmlResponse($this->template->render('category::index/index', [ 'list' => $categories, 'layout' => 'layout/admin' ])); |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | /** |
@@ -73,13 +73,13 @@ discard block |
||
73 | 73 | * |
74 | 74 | * @return \Psr\Http\Message\ResponseInterface |
75 | 75 | */ |
76 | - public function edit($errors = []): \Psr\Http\Message\ResponseInterface |
|
76 | + public function edit($errors = [ ]): \Psr\Http\Message\ResponseInterface |
|
77 | 77 | { |
78 | 78 | $id = $this->request->getAttribute('id'); |
79 | 79 | $category = $this->categoryService->getCategory($id); |
80 | 80 | |
81 | - if($this->request->getParsedBody()) { |
|
82 | - $category = (object)($this->request->getParsedBody() + (array)$category); |
|
81 | + if ($this->request->getParsedBody()) { |
|
82 | + $category = (object) ($this->request->getParsedBody() + (array) $category); |
|
83 | 83 | $category->category_id = $id; |
84 | 84 | } |
85 | 85 | |
@@ -96,37 +96,37 @@ discard block |
||
96 | 96 | |
97 | 97 | public function save() |
98 | 98 | { |
99 | - try{ |
|
99 | + try { |
|
100 | 100 | $id = $this->request->getAttribute('id'); |
101 | 101 | $data = $this->request->getParsedBody(); |
102 | 102 | $data += (new Request())->getFiles()->toArray(); |
103 | 103 | |
104 | - if($id) { |
|
104 | + if ($id) { |
|
105 | 105 | $this->categoryService->updateCategory($data, $id); |
106 | 106 | } |
107 | - else{ |
|
107 | + else { |
|
108 | 108 | $this->categoryService->createCategory($data); |
109 | 109 | } |
110 | 110 | |
111 | 111 | return $this->response->withStatus(302)->withHeader('Location', $this->router->generateUri('admin.categories')); |
112 | 112 | } |
113 | - catch(FilterException $fe){ |
|
113 | + catch (FilterException $fe) { |
|
114 | 114 | return $this->edit($fe->getArrayMessages()); |
115 | 115 | } |
116 | - catch(\Exception $e){ |
|
116 | + catch (\Exception $e) { |
|
117 | 117 | throw $e; |
118 | 118 | } |
119 | 119 | } |
120 | 120 | |
121 | 121 | public function delete() |
122 | 122 | { |
123 | - try{ |
|
123 | + try { |
|
124 | 124 | $id = $this->request->getAttribute('id'); |
125 | 125 | $this->categoryService->delete($id); |
126 | 126 | |
127 | 127 | return $this->response->withStatus(302)->withHeader('Location', $this->router->generateUri('admin.categories')); |
128 | 128 | } |
129 | - catch(\Exception $e){ |
|
129 | + catch (\Exception $e) { |
|
130 | 130 | return $this->response->withStatus(302)->withHeader('Location', $this->router->generateUri('admin.categories')); |
131 | 131 | } |
132 | 132 | } |
@@ -12,17 +12,17 @@ discard block |
||
12 | 12 | |
13 | 13 | public function getInputFilter() |
14 | 14 | { |
15 | - if(!$this->inputFilter) { |
|
15 | + if (!$this->inputFilter) { |
|
16 | 16 | $inputFilter = new InputFilter(); |
17 | 17 | |
18 | 18 | $inputFilter->add( |
19 | 19 | [ |
20 | 20 | 'name' => 'name', |
21 | 21 | 'required' => true, |
22 | - 'filters' => [['name' => 'StringTrim']], |
|
22 | + 'filters' => [ [ 'name' => 'StringTrim' ] ], |
|
23 | 23 | 'validators' => [ |
24 | - ['name' => 'NotEmpty'], |
|
25 | - ['name' => 'StringLength', 'options' => ['min' => 2, 'max' => 500]], |
|
24 | + [ 'name' => 'NotEmpty' ], |
|
25 | + [ 'name' => 'StringLength', 'options' => [ 'min' => 2, 'max' => 500 ] ], |
|
26 | 26 | ], |
27 | 27 | ] |
28 | 28 | ); |
@@ -31,10 +31,10 @@ discard block |
||
31 | 31 | [ |
32 | 32 | 'name' => 'slug', |
33 | 33 | 'required' => true, |
34 | - 'filters' => [['name' => 'StringTrim', 'options' => ['charlist' => '/']]], |
|
34 | + 'filters' => [ [ 'name' => 'StringTrim', 'options' => [ 'charlist' => '/' ] ] ], |
|
35 | 35 | 'validators' => [ |
36 | - ['name' => 'NotEmpty'], |
|
37 | - ['name' => 'StringLength', 'options' => ['min' => 2, 'max' => 100]], |
|
36 | + [ 'name' => 'NotEmpty' ], |
|
37 | + [ 'name' => 'StringLength', 'options' => [ 'min' => 2, 'max' => 100 ] ], |
|
38 | 38 | ], |
39 | 39 | ] |
40 | 40 | ); |
@@ -43,10 +43,10 @@ discard block |
||
43 | 43 | [ |
44 | 44 | 'name' => 'title', |
45 | 45 | 'required' => false, |
46 | - 'filters' => [['name' => 'StringTrim']], |
|
46 | + 'filters' => [ [ 'name' => 'StringTrim' ] ], |
|
47 | 47 | 'validators' => [ |
48 | - ['name' => 'NotEmpty'], |
|
49 | - ['name' => 'StringLength', 'options' => ['min' => 2, 'max' => 100]], |
|
48 | + [ 'name' => 'NotEmpty' ], |
|
49 | + [ 'name' => 'StringLength', 'options' => [ 'min' => 2, 'max' => 100 ] ], |
|
50 | 50 | ], |
51 | 51 | ] |
52 | 52 | ); |
@@ -55,10 +55,10 @@ discard block |
||
55 | 55 | [ |
56 | 56 | 'name' => 'description', |
57 | 57 | 'required' => false, |
58 | - 'filters' => [['name' => 'StringTrim']], |
|
58 | + 'filters' => [ [ 'name' => 'StringTrim' ] ], |
|
59 | 59 | 'validators' => [ |
60 | - ['name' => 'NotEmpty'], |
|
61 | - ['name' => 'StringLength', 'options' => ['min' => 2, 'max' => 1000]], |
|
60 | + [ 'name' => 'NotEmpty' ], |
|
61 | + [ 'name' => 'StringLength', 'options' => [ 'min' => 2, 'max' => 1000 ] ], |
|
62 | 62 | ], |
63 | 63 | ] |
64 | 64 | ); |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | [ |
68 | 68 | 'name' => 'is_in_homepage', |
69 | 69 | 'required' => false, |
70 | - 'filters' => [['name' => 'Boolean']], |
|
70 | + 'filters' => [ [ 'name' => 'Boolean' ] ], |
|
71 | 71 | ] |
72 | 72 | ); |
73 | 73 | |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | [ |
76 | 76 | 'name' => 'is_in_category_list', |
77 | 77 | 'required' => false, |
78 | - 'filters' => [['name' => 'Boolean']], |
|
78 | + 'filters' => [ [ 'name' => 'Boolean' ] ], |
|
79 | 79 | ] |
80 | 80 | ); |
81 | 81 |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Web\Action; |
6 | 6 | |
@@ -76,21 +76,21 @@ discard block |
||
76 | 76 | { |
77 | 77 | $eventSlug = $request->getAttribute('event_slug'); |
78 | 78 | $event = $this->eventService->fetchEventBySlug($eventSlug); |
79 | - $attendees = []; |
|
79 | + $attendees = [ ]; |
|
80 | 80 | |
81 | - if(!$event) { |
|
81 | + if (!$event) { |
|
82 | 82 | return $next($request, $response); |
83 | 83 | } |
84 | 84 | |
85 | 85 | // Fetch going ppl |
86 | 86 | try { |
87 | - if(strpos($event->event_url, 'meetup.com') !== false) { |
|
87 | + if (strpos($event->event_url, 'meetup.com') !== false) { |
|
88 | 88 | $parts = explode('/', $event->event_url); |
89 | - $attendees = $this->meetupService->getMeetupAttendees($parts[count($parts) - 2]); |
|
89 | + $attendees = $this->meetupService->getMeetupAttendees($parts[ count($parts) - 2 ]); |
|
90 | 90 | shuffle($attendees); |
91 | 91 | } |
92 | 92 | } |
93 | - catch(\Exception $e) { |
|
93 | + catch (\Exception $e) { |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | return new HtmlResponse( |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Core\Service; |
6 | 6 | |
@@ -81,17 +81,17 @@ discard block |
||
81 | 81 | */ |
82 | 82 | public function loginUser($email, $password) |
83 | 83 | { |
84 | - if(!$email || !$password) { |
|
84 | + if (!$email || !$password) { |
|
85 | 85 | throw new \Exception('Both email and password are required.', 400); |
86 | 86 | } |
87 | 87 | |
88 | 88 | $user = $this->adminUsersMapper->getByEmail($email); |
89 | 89 | |
90 | - if(!$user) { |
|
90 | + if (!$user) { |
|
91 | 91 | throw new \Exception('User does not exist.'); |
92 | 92 | } |
93 | 93 | |
94 | - if(!$this->crypt->verify($password, $user->password)) { |
|
94 | + if (!$this->crypt->verify($password, $user->password)) { |
|
95 | 95 | throw new \Exception('Password does not match.'); |
96 | 96 | } |
97 | 97 | |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | { |
136 | 136 | $filter = $this->adminUserFilter->getInputFilter()->setData($data); |
137 | 137 | |
138 | - if(!$filter->isValid()) { |
|
138 | + if (!$filter->isValid()) { |
|
139 | 139 | throw new FilterException($filter->getMessages()); |
140 | 140 | } |
141 | 141 | |
@@ -144,10 +144,10 @@ discard block |
||
144 | 144 | 'profile_img' => $this->upload->uploadImage($data, 'profile_img') |
145 | 145 | ]; |
146 | 146 | |
147 | - unset($data['confirm_password']); |
|
148 | - $data['password'] = $this->crypt->create($data['password']); |
|
149 | - $data['admin_user_id'] = Uuid::uuid1()->toString(); |
|
150 | - $data['admin_user_uuid'] = (new MysqlUuid($data['admin_user_id']))->toFormat(new Binary); |
|
147 | + unset($data[ 'confirm_password' ]); |
|
148 | + $data[ 'password' ] = $this->crypt->create($data[ 'password' ]); |
|
149 | + $data[ 'admin_user_id' ] = Uuid::uuid1()->toString(); |
|
150 | + $data[ 'admin_user_uuid' ] = (new MysqlUuid($data[ 'admin_user_id' ]))->toFormat(new Binary); |
|
151 | 151 | |
152 | 152 | return $this->adminUsersMapper->insert($data); |
153 | 153 | } |
@@ -161,17 +161,17 @@ discard block |
||
161 | 161 | $filter = $this->adminUserFilter->getInputFilter()->setData($data); |
162 | 162 | |
163 | 163 | // we dont want to force user to enter the password again |
164 | - if($data['password'] == '') { |
|
164 | + if ($data[ 'password' ] == '') { |
|
165 | 165 | $filter->remove('password'); |
166 | 166 | $filter->remove('confirm_password'); |
167 | 167 | } |
168 | 168 | |
169 | 169 | // if we want to keep same email |
170 | - if($user->email == $data['email']) { |
|
170 | + if ($user->email == $data[ 'email' ]) { |
|
171 | 171 | $filter->remove('email'); |
172 | 172 | } |
173 | 173 | |
174 | - if(!$filter->isValid()) { |
|
174 | + if (!$filter->isValid()) { |
|
175 | 175 | throw new FilterException($filter->getMessages()); |
176 | 176 | } |
177 | 177 | |
@@ -181,26 +181,26 @@ discard block |
||
181 | 181 | ]; |
182 | 182 | |
183 | 183 | // We don't want to force user to re-upload image on edit |
184 | - if(!$data['face_img']) { |
|
185 | - unset($data['face_img']); |
|
184 | + if (!$data[ 'face_img' ]) { |
|
185 | + unset($data[ 'face_img' ]); |
|
186 | 186 | } |
187 | - else{ |
|
187 | + else { |
|
188 | 188 | $this->upload->deleteFile($user->face_img); |
189 | 189 | } |
190 | 190 | |
191 | - if(!$data['profile_img']) { |
|
192 | - unset($data['profile_img']); |
|
191 | + if (!$data[ 'profile_img' ]) { |
|
192 | + unset($data[ 'profile_img' ]); |
|
193 | 193 | } |
194 | - else{ |
|
194 | + else { |
|
195 | 195 | $this->upload->deleteFile($user->profile_img); |
196 | 196 | } |
197 | 197 | |
198 | - if(isset($data['password'])) { |
|
199 | - unset($data['confirm_password']); |
|
200 | - $data['password'] = $this->crypt->create($data['password']); |
|
198 | + if (isset($data[ 'password' ])) { |
|
199 | + unset($data[ 'confirm_password' ]); |
|
200 | + $data[ 'password' ] = $this->crypt->create($data[ 'password' ]); |
|
201 | 201 | } |
202 | 202 | |
203 | - return $this->adminUsersMapper->update($data, ['admin_user_id' => $userId]); |
|
203 | + return $this->adminUsersMapper->update($data, [ 'admin_user_id' => $userId ]); |
|
204 | 204 | } |
205 | 205 | |
206 | 206 | /** |
@@ -212,14 +212,14 @@ discard block |
||
212 | 212 | */ |
213 | 213 | public function delete($userId) |
214 | 214 | { |
215 | - if(!($adminUser = $this->getUser($userId))) { |
|
215 | + if (!($adminUser = $this->getUser($userId))) { |
|
216 | 216 | throw new \Exception('Admin user not found.'); |
217 | 217 | } |
218 | 218 | |
219 | 219 | $this->upload->deleteFile($adminUser->face_img); |
220 | 220 | $this->upload->deleteFile($adminUser->profile_img); |
221 | 221 | |
222 | - return (bool)$this->adminUsersMapper->delete(['admin_user_id' => $userId]); |
|
222 | + return (bool) $this->adminUsersMapper->delete([ 'admin_user_id' => $userId ]); |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | /** |
@@ -20,7 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | $allMsgs = ''; |
22 | 22 | array_walk_recursive( |
23 | - $msgs, function ($value) use (&$allMsgs) { |
|
23 | + $msgs, function($value) use (&$allMsgs) { |
|
24 | 24 | $allMsgs .= "- " . $value . "<br/>"; |
25 | 25 | } |
26 | 26 | ); |
@@ -19,17 +19,17 @@ discard block |
||
19 | 19 | |
20 | 20 | public function getInputFilter() |
21 | 21 | { |
22 | - if(!$this->inputFilter) { |
|
22 | + if (!$this->inputFilter) { |
|
23 | 23 | $inputFilter = new InputFilter(); |
24 | 24 | |
25 | 25 | $inputFilter->add( |
26 | 26 | [ |
27 | 27 | 'name' => 'first_name', |
28 | 28 | 'required' => true, |
29 | - 'filters' => [['name' => 'StringTrim']], |
|
29 | + 'filters' => [ [ 'name' => 'StringTrim' ] ], |
|
30 | 30 | 'validators' => [ |
31 | - ['name' => 'NotEmpty'], |
|
32 | - ['name' => 'StringLength', 'options' => ['min' => 2, 'max' => 255]] |
|
31 | + [ 'name' => 'NotEmpty' ], |
|
32 | + [ 'name' => 'StringLength', 'options' => [ 'min' => 2, 'max' => 255 ] ] |
|
33 | 33 | ], |
34 | 34 | ] |
35 | 35 | ); |
@@ -38,10 +38,10 @@ discard block |
||
38 | 38 | [ |
39 | 39 | 'name' => 'last_name', |
40 | 40 | 'required' => true, |
41 | - 'filters' => [['name' => 'StringTrim']], |
|
41 | + 'filters' => [ [ 'name' => 'StringTrim' ] ], |
|
42 | 42 | 'validators' => [ |
43 | - ['name' => 'NotEmpty'], |
|
44 | - ['name' => 'StringLength', 'options' => ['min' => 2, 'max' => 255]] |
|
43 | + [ 'name' => 'NotEmpty' ], |
|
44 | + [ 'name' => 'StringLength', 'options' => [ 'min' => 2, 'max' => 255 ] ] |
|
45 | 45 | ], |
46 | 46 | ] |
47 | 47 | ); |
@@ -50,11 +50,11 @@ discard block |
||
50 | 50 | [ |
51 | 51 | 'name' => 'email', |
52 | 52 | 'required' => true, |
53 | - 'filters' => [['name' => 'StringTrim']], |
|
53 | + 'filters' => [ [ 'name' => 'StringTrim' ] ], |
|
54 | 54 | 'validators' => [ |
55 | - ['name' => 'NotEmpty'], |
|
56 | - ['name' => 'EmailAddress'], |
|
57 | - ['name' => 'dbnorecordexists', 'options' => ['adapter' => $this->adapter, 'table' => 'admin_users', 'field' => 'email']], |
|
55 | + [ 'name' => 'NotEmpty' ], |
|
56 | + [ 'name' => 'EmailAddress' ], |
|
57 | + [ 'name' => 'dbnorecordexists', 'options' => [ 'adapter' => $this->adapter, 'table' => 'admin_users', 'field' => 'email' ] ], |
|
58 | 58 | |
59 | 59 | ], |
60 | 60 | ] |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | [ |
65 | 65 | 'name' => 'introduction', |
66 | 66 | 'required' => false, |
67 | - 'filters' => [['name' => 'StringTrim']] |
|
67 | + 'filters' => [ [ 'name' => 'StringTrim' ] ] |
|
68 | 68 | ] |
69 | 69 | ); |
70 | 70 | |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | [ |
73 | 73 | 'name' => 'biography', |
74 | 74 | 'required' => false, |
75 | - 'filters' => [['name' => 'StringTrim']] |
|
75 | + 'filters' => [ [ 'name' => 'StringTrim' ] ] |
|
76 | 76 | ] |
77 | 77 | ); |
78 | 78 | |
@@ -81,8 +81,8 @@ discard block |
||
81 | 81 | 'name' => 'password', |
82 | 82 | 'required' => true, |
83 | 83 | 'validators' => [ |
84 | - ['name' => 'NotEmpty'], |
|
85 | - ['name' => 'StringLength', 'options' => ['min' => 7, 'max' => 255]] |
|
84 | + [ 'name' => 'NotEmpty' ], |
|
85 | + [ 'name' => 'StringLength', 'options' => [ 'min' => 7, 'max' => 255 ] ] |
|
86 | 86 | ], |
87 | 87 | ] |
88 | 88 | ); |
@@ -92,8 +92,8 @@ discard block |
||
92 | 92 | 'name' => 'confirm_password', |
93 | 93 | 'required' => true, |
94 | 94 | 'validators' => [ |
95 | - ['name' => 'NotEmpty'], |
|
96 | - ['name' => 'Identical', 'options' => ['token' => 'password']], |
|
95 | + [ 'name' => 'NotEmpty' ], |
|
96 | + [ 'name' => 'Identical', 'options' => [ 'token' => 'password' ] ], |
|
97 | 97 | ], |
98 | 98 | ] |
99 | 99 | ); |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | [ |
103 | 103 | 'name' => 'status', |
104 | 104 | 'required' => true, |
105 | - 'validators' => [['name' => 'NotEmpty'], ['name' => 'Digits']] |
|
105 | + 'validators' => [ [ 'name' => 'NotEmpty' ], [ 'name' => 'Digits' ] ] |
|
106 | 106 | ] |
107 | 107 | ); |
108 | 108 |
@@ -35,6 +35,6 @@ |
||
35 | 35 | |
36 | 36 | public function getActivePage($urlSlug) |
37 | 37 | { |
38 | - return $this->select(['slug' => $urlSlug, 'is_active' => true]); |
|
38 | + return $this->select([ 'slug' => $urlSlug, 'is_active' => true ]); |
|
39 | 39 | } |
40 | 40 | } |
@@ -55,8 +55,8 @@ discard block |
||
55 | 55 | public function index(): HtmlResponse |
56 | 56 | { |
57 | 57 | $params = $this->request->getQueryParams(); |
58 | - $page = isset($params['page']) ? $params['page'] : 1; |
|
59 | - $limit = isset($params['limit']) ? $params['limit'] : 15; |
|
58 | + $page = isset($params[ 'page' ]) ? $params[ 'page' ] : 1; |
|
59 | + $limit = isset($params[ 'limit' ]) ? $params[ 'limit' ] : 15; |
|
60 | 60 | $pagination = $this->pageService->getPagination($page, $limit); |
61 | 61 | |
62 | 62 | return new HtmlResponse( |
@@ -69,14 +69,14 @@ discard block |
||
69 | 69 | ); |
70 | 70 | } |
71 | 71 | |
72 | - public function edit($errors = []): HtmlResponse |
|
72 | + public function edit($errors = [ ]): HtmlResponse |
|
73 | 73 | { |
74 | 74 | $id = $this->request->getAttribute('id'); |
75 | 75 | $page = $this->pageService->getPage($id); |
76 | 76 | |
77 | - if($this->request->getParsedBody()) { |
|
77 | + if ($this->request->getParsedBody()) { |
|
78 | 78 | $page = new \Page\Entity\Page(); |
79 | - $page->exchangeArray($this->request->getParsedBody() + (array)$page); |
|
79 | + $page->exchangeArray($this->request->getParsedBody() + (array) $page); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | return new HtmlResponse( |
@@ -95,9 +95,9 @@ discard block |
||
95 | 95 | try { |
96 | 96 | $pageId = $this->request->getAttribute('id'); |
97 | 97 | $data = $this->request->getParsedBody(); |
98 | - $data += (new Request())->getFiles()->toArray(); |
|
98 | + $data += (new Request())->getFiles()->toArray(); |
|
99 | 99 | |
100 | - if($pageId) { |
|
100 | + if ($pageId) { |
|
101 | 101 | $this->pageService->updatePage($data, $pageId); |
102 | 102 | } |
103 | 103 | else { |
@@ -106,10 +106,10 @@ discard block |
||
106 | 106 | |
107 | 107 | return $this->response->withStatus(302)->withHeader('Location', $this->router->generateUri('admin.pages')); |
108 | 108 | } |
109 | - catch(FilterException $fe) { |
|
109 | + catch (FilterException $fe) { |
|
110 | 110 | return $this->edit($fe->getArrayMessages()); |
111 | 111 | } |
112 | - catch(\Exception $e) { |
|
112 | + catch (\Exception $e) { |
|
113 | 113 | throw $e; |
114 | 114 | } |
115 | 115 | } |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | |
123 | 123 | return $this->response->withStatus(302)->withHeader('Location', $this->router->generateUri('admin.pages')); |
124 | 124 | } |
125 | - catch(\Exception $e) { |
|
125 | + catch (\Exception $e) { |
|
126 | 126 | return $this->response->withStatus(302)->withHeader('Location', $this->router->generateUri('admin.pages')); |
127 | 127 | } |
128 | 128 | } |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | $this->pageMapper->getAdapter(), |
37 | 37 | $this->pageMapper->getResultSetPrototype() |
38 | 38 | ); |
39 | - $pagination = new Paginator($paginationAdapter); |
|
39 | + $pagination = new Paginator($paginationAdapter); |
|
40 | 40 | |
41 | 41 | $pagination->setCurrentPageNumber($page); |
42 | 42 | $pagination->setItemCountPerPage($limit); |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | */ |
52 | 52 | public function getPage($pageId) |
53 | 53 | { |
54 | - return $this->pageMapper->select(['page_id' => $pageId])->current(); |
|
54 | + return $this->pageMapper->select([ 'page_id' => $pageId ])->current(); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | */ |
70 | 70 | public function getHomepage() |
71 | 71 | { |
72 | - return $this->pageMapper->select(['is_homepage' => true])->current(); |
|
72 | + return $this->pageMapper->select([ 'is_homepage' => true ])->current(); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | /** |
@@ -87,13 +87,13 @@ discard block |
||
87 | 87 | } |
88 | 88 | |
89 | 89 | $data = $filter->getValues() |
90 | - + ['main_img' => $this->upload->uploadImage($data, 'main_img')]; |
|
91 | - $data['page_id'] = Uuid::uuid1()->toString(); |
|
92 | - $data['page_uuid'] |
|
93 | - = (new MysqlUuid($data['page_id']))->toFormat(new Binary); |
|
90 | + + [ 'main_img' => $this->upload->uploadImage($data, 'main_img') ]; |
|
91 | + $data[ 'page_id' ] = Uuid::uuid1()->toString(); |
|
92 | + $data[ 'page_uuid' ] |
|
93 | + = (new MysqlUuid($data[ 'page_id' ]))->toFormat(new Binary); |
|
94 | 94 | |
95 | - if ($data['is_homepage']) { |
|
96 | - $this->pageMapper->update(['is_homepage' => false]); |
|
95 | + if ($data[ 'is_homepage' ]) { |
|
96 | + $this->pageMapper->update([ 'is_homepage' => false ]); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | return $this->pageMapper->insert($data); |
@@ -112,21 +112,21 @@ discard block |
||
112 | 112 | } |
113 | 113 | |
114 | 114 | $data = $filter->getValues() |
115 | - + ['main_img' => $this->upload->uploadImage($data, 'main_img')]; |
|
115 | + + [ 'main_img' => $this->upload->uploadImage($data, 'main_img') ]; |
|
116 | 116 | |
117 | 117 | // We don't want to force user to re-upload image on edit |
118 | - if (!$data['main_img']) { |
|
119 | - unset($data['main_img']); |
|
118 | + if (!$data[ 'main_img' ]) { |
|
119 | + unset($data[ 'main_img' ]); |
|
120 | 120 | } |
121 | 121 | else { |
122 | 122 | $this->upload->deleteFile($page->getMainImg()); |
123 | 123 | } |
124 | 124 | |
125 | - if ($data['is_homepage']) { |
|
126 | - $this->pageMapper->update(['is_homepage' => false]); |
|
125 | + if ($data[ 'is_homepage' ]) { |
|
126 | + $this->pageMapper->update([ 'is_homepage' => false ]); |
|
127 | 127 | } |
128 | 128 | |
129 | - return $this->pageMapper->update($data, ['page_id' => $pageId]); |
|
129 | + return $this->pageMapper->update($data, [ 'page_id' => $pageId ]); |
|
130 | 130 | } |
131 | 131 | |
132 | 132 | public function delete($pageId) |
@@ -137,6 +137,6 @@ discard block |
||
137 | 137 | |
138 | 138 | $this->upload->deleteFile($page->getMainImg()); |
139 | 139 | |
140 | - return (bool)$this->pageMapper->delete(['page_id' => $pageId]); |
|
140 | + return (bool) $this->pageMapper->delete([ 'page_id' => $pageId ]); |
|
141 | 141 | } |
142 | 142 | } |