@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | |
78 | 78 | $id_element = $this->model->hasBeenTranslated($this->model->getTable(), $id, $iso); |
79 | 79 | if (!empty($id_element)) { |
80 | - return redirect()->to(action($this->getControllerNameForAction() . '@getEdit', $id_element)); |
|
80 | + return redirect()->to(action($this->getControllerNameForAction().'@getEdit', $id_element)); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | $model = (!empty($id) || $id === "0") ? $this->model->withoutTranslation()->findOrFail($id) : $this->model; |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | return $result; |
134 | 134 | } |
135 | 135 | |
136 | - return redirect()->to(action($this->getControllerNameForAction() . '@getIndex')); |
|
136 | + return redirect()->to(action($this->getControllerNameForAction().'@getIndex')); |
|
137 | 137 | } |
138 | 138 | |
139 | 139 | // ------------------------------------------------------------------------------------------------ |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | return $result; |
168 | 168 | } |
169 | 169 | |
170 | - return redirect()->to(action($this->getControllerNameForAction() . '@getIndex')); |
|
170 | + return redirect()->to(action($this->getControllerNameForAction().'@getIndex')); |
|
171 | 171 | |
172 | 172 | } |
173 | 173 | |
@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | $form_content = view('form-builder::form.components.formgenerator.info', [ |
231 | 231 | 'form' => $form, |
232 | 232 | 'id' => $id, |
233 | - 'route' => $this->getControllerNameForAction() . '@', |
|
233 | + 'route' => $this->getControllerNameForAction().'@', |
|
234 | 234 | ]); |
235 | 235 | |
236 | 236 | $this->layoutManager->add([ |
@@ -250,6 +250,6 @@ discard block |
||
250 | 250 | |
251 | 251 | $action = explode('@', \Route::currentRouteAction()); |
252 | 252 | |
253 | - return '\\' . $action[0]; |
|
253 | + return '\\'.$action[0]; |
|
254 | 254 | } |
255 | 255 | } |
256 | 256 | \ No newline at end of file |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | protected function registerRouter() |
15 | 15 | { |
16 | - $this->app->singleton('router',function ($app) { |
|
16 | + $this->app->singleton('router', function($app) { |
|
17 | 17 | return new Router($app['events'], $app); |
18 | 18 | }); |
19 | 19 | } |
@@ -96,6 +96,10 @@ |
||
96 | 96 | ]; |
97 | 97 | } |
98 | 98 | |
99 | + /** |
|
100 | + * @param string $key |
|
101 | + * @param null|integer $default_value |
|
102 | + */ |
|
99 | 103 | protected function getParams(Request $request, $key, $default_value) |
100 | 104 | { |
101 | 105 | $element = $request->get($key); |
@@ -38,7 +38,7 @@ |
||
38 | 38 | $data = $this->model->where($this->model->getKeyName(), $request->get('id'))->get()->last(); |
39 | 39 | $data->delete(); |
40 | 40 | |
41 | - return redirect()->to(action('\\' . get_class($this) . '@getIndex')); |
|
41 | + return redirect()->to(action('\\'.get_class($this).'@getIndex')); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | // ------------------------------------------------------------------------------------------------ |
@@ -77,7 +77,7 @@ |
||
77 | 77 | protected function getUpdateRules() |
78 | 78 | { |
79 | 79 | $key = \Request::get($this->model->getKeyName()); |
80 | - static::$rules_update['email'] = 'required|email|unique:users,email,' . $key; |
|
80 | + static::$rules_update['email'] = 'required|email|unique:users,email,'.$key; |
|
81 | 81 | |
82 | 82 | return parent::getUpdateRules(); |
83 | 83 | } |
@@ -44,7 +44,7 @@ |
||
44 | 44 | protected function getUpdateRules() |
45 | 45 | { |
46 | 46 | $key = \Request::get($this->model->getKeyName()); |
47 | - static::$rules['iso'] = 'required|unique:languages,iso,' . $key; |
|
47 | + static::$rules['iso'] = 'required|unique:languages,iso,'.$key; |
|
48 | 48 | |
49 | 49 | return parent::getUpdateRules(); |
50 | 50 | } |
@@ -10,15 +10,15 @@ |
||
10 | 10 | // ------------------------------------------------------------------------------------------------ |
11 | 11 | public function addTranslationAction($template = 'expendable::admin.form.components.datatable.translations', $route = '') |
12 | 12 | { |
13 | - $this->add('translation', function ($model) use ($template, $route) { |
|
13 | + $this->add('translation', function($model) use ($template, $route) { |
|
14 | 14 | |
15 | 15 | $languages = Language::withoutCurrentLanguage()->get(); |
16 | - $translations = Translation::byElement($model)->pluck('id_element','iso')->toArray(); |
|
16 | + $translations = Translation::byElement($model)->pluck('id_element', 'iso')->toArray(); |
|
17 | 17 | return view($template, array( |
18 | 18 | 'languages' => $languages, |
19 | 19 | 'translations' => $translations, |
20 | 20 | 'data' => $model->toArray(), |
21 | - 'route' => !empty($route) ? $route . '@' : $this->getControllerNameForAction() . '@' |
|
21 | + 'route' => !empty($route) ? $route.'@' : $this->getControllerNameForAction().'@' |
|
22 | 22 | ))->render(); |
23 | 23 | }); |
24 | 24 |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | |
27 | 27 | public function getIndex() |
28 | 28 | { |
29 | - return redirect()->to(action('\\' . get_class($this) . '@getEdit')); |
|
29 | + return redirect()->to(action('\\'.get_class($this).'@getEdit')); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | // ------------------------------------------------------------------------------------------------ |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | } |
59 | 59 | |
60 | 60 | |
61 | - return redirect()->to(action('\\' . get_class($this) . '@getIndex')); |
|
61 | + return redirect()->to(action('\\'.get_class($this).'@getIndex')); |
|
62 | 62 | |
63 | 63 | } |
64 | 64 | } |
65 | 65 | \ No newline at end of file |
@@ -18,7 +18,7 @@ |
||
18 | 18 | |
19 | 19 | public function getChangeLang($locale = null) |
20 | 20 | { |
21 | - session()->put('language',$locale); |
|
21 | + session()->put('language', $locale); |
|
22 | 22 | app()->setLocale($locale); |
23 | 23 | return redirect()->back(); |
24 | 24 | } |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | { |
31 | 31 | parent::__construct($layoutManager); |
32 | 32 | |
33 | - $this->auth = $auth; |
|
33 | + $this->auth = $auth; |
|
34 | 34 | |
35 | 35 | } |
36 | 36 | |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | |
41 | 41 | public function getLoginRedirect() |
42 | 42 | { |
43 | - return redirect()->action('\\' . self::class . '@getIndex'); |
|
43 | + return redirect()->action('\\'.self::class.'@getIndex'); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | public function getIndex() |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | } |
204 | 204 | |
205 | 205 | $response = $this->broker()->reset( |
206 | - $this->credentials($request), function ($user, $password) { |
|
206 | + $this->credentials($request), function($user, $password) { |
|
207 | 207 | $this->resetPassword($user, $password); |
208 | 208 | }); |
209 | 209 | |
@@ -211,7 +211,7 @@ discard block |
||
211 | 211 | // the application's home authenticated view. If there is an error we can |
212 | 212 | // redirect them back to where they came from with their error message. |
213 | 213 | return $response == Password::PASSWORD_RESET |
214 | - ? redirect()->to(action('\\' . get_class($this) . '@getIndex')) |
|
214 | + ? redirect()->to(action('\\'.get_class($this).'@getIndex')) |
|
215 | 215 | : redirect()->back()->with('error', trans($response)); |
216 | 216 | |
217 | 217 | } |