@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | { |
83 | 83 | $name = array_shift($parts); |
84 | 84 | |
85 | - while (! empty($parts)) { |
|
85 | + while (!empty($parts)) { |
|
86 | 86 | $part = array_shift($parts); |
87 | 87 | $name .= "[$part]"; |
88 | 88 | } |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | { |
236 | 236 | $this->addValidationRule('_unique'); |
237 | 237 | |
238 | - if (! is_null($message)) { |
|
238 | + if (!is_null($message)) { |
|
239 | 239 | $this->addValidationMessage('unique', $message); |
240 | 240 | } |
241 | 241 | |
@@ -343,7 +343,7 @@ discard block |
||
343 | 343 | */ |
344 | 344 | public function getValueFromRequest(\Illuminate\Http\Request $request) |
345 | 345 | { |
346 | - if ($request->hasSession() && ! is_null($value = $request->old($this->getPath()))) { |
|
346 | + if ($request->hasSession() && !is_null($value = $request->old($this->getPath()))) { |
|
347 | 347 | return $value; |
348 | 348 | } |
349 | 349 | |
@@ -355,7 +355,7 @@ discard block |
||
355 | 355 | */ |
356 | 356 | public function getValueFromModel() |
357 | 357 | { |
358 | - if (! is_null($value = $this->getValueFromRequest(request()))) { |
|
358 | + if (!is_null($value = $this->getValueFromRequest(request()))) { |
|
359 | 359 | return $value; |
360 | 360 | } |
361 | 361 | |
@@ -363,7 +363,7 @@ discard block |
||
363 | 363 | $path = $this->getPath(); |
364 | 364 | $value = $this->getDefaultValue(); |
365 | 365 | |
366 | - if (is_null($model) or ! $model->exists) { |
|
366 | + if (is_null($model) or !$model->exists) { |
|
367 | 367 | return $value; |
368 | 368 | } |
369 | 369 | |
@@ -373,7 +373,7 @@ discard block |
||
373 | 373 | if ($count === 1) { |
374 | 374 | $attribute = $model->getAttribute($this->getModelAttributeKey()); |
375 | 375 | |
376 | - if (! empty($attribute) or is_null($value)) { |
|
376 | + if (!empty($attribute) or is_null($value)) { |
|
377 | 377 | return $attribute; |
378 | 378 | } |
379 | 379 | } |
@@ -387,7 +387,7 @@ discard block |
||
387 | 387 | if ($count === 2) { |
388 | 388 | $attribute = $model->getAttribute($relation); |
389 | 389 | |
390 | - if (! empty($attribute) or is_null($value)) { |
|
390 | + if (!empty($attribute) or is_null($value)) { |
|
391 | 391 | return $attribute; |
392 | 392 | } |
393 | 393 | } |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | */ |
204 | 204 | public function can($action, Model $model) |
205 | 205 | { |
206 | - if (! $this->checkAccess) { |
|
206 | + if (!$this->checkAccess) { |
|
207 | 207 | return true; |
208 | 208 | } |
209 | 209 | |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | */ |
216 | 216 | public function isCreatable() |
217 | 217 | { |
218 | - if (! is_callable($this->getCreate())) { |
|
218 | + if (!is_callable($this->getCreate())) { |
|
219 | 219 | return false; |
220 | 220 | } |
221 | 221 | |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | */ |
240 | 240 | public function isEditable(Model $model) |
241 | 241 | { |
242 | - if (! is_callable($this->getEdit())) { |
|
242 | + if (!is_callable($this->getEdit())) { |
|
243 | 243 | return false; |
244 | 244 | } |
245 | 245 | |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | */ |
362 | 362 | public function fireDisplay() |
363 | 363 | { |
364 | - if (! is_callable($this->getDisplay())) { |
|
364 | + if (!is_callable($this->getDisplay())) { |
|
365 | 365 | return; |
366 | 366 | } |
367 | 367 | |
@@ -402,7 +402,7 @@ discard block |
||
402 | 402 | */ |
403 | 403 | public function fireCreate() |
404 | 404 | { |
405 | - if (! is_callable($this->getCreate())) { |
|
405 | + if (!is_callable($this->getCreate())) { |
|
406 | 406 | return; |
407 | 407 | } |
408 | 408 | |
@@ -449,7 +449,7 @@ discard block |
||
449 | 449 | */ |
450 | 450 | public function fireEdit($id) |
451 | 451 | { |
452 | - if (! is_callable($this->getEdit())) { |
|
452 | + if (!is_callable($this->getEdit())) { |
|
453 | 453 | return; |
454 | 454 | } |
455 | 455 |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | */ |
59 | 59 | protected function registerModelBindings(Collection $aliases) |
60 | 60 | { |
61 | - $this->router->bind('adminModel', function ($model, Route $route) use ($aliases) { |
|
61 | + $this->router->bind('adminModel', function($model, Route $route) use ($aliases) { |
|
62 | 62 | if (is_null($model = $aliases->get($model))) { |
63 | 63 | throw new ModelNotFoundException(); |
64 | 64 | } |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | */ |
80 | 80 | protected function runCustomController(Route $route, $controller, $action) |
81 | 81 | { |
82 | - $route->uses(function () use ($route, $controller, $action) { |
|
82 | + $route->uses(function() use ($route, $controller, $action) { |
|
83 | 83 | return (new \Illuminate\Routing\ControllerDispatcher($this->app))->dispatch( |
84 | 84 | $route, $this->app->make($controller), $action |
85 | 85 | ); |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | */ |
57 | 57 | public function setClass($class) |
58 | 58 | { |
59 | - if (! class_exists($class)) { |
|
59 | + if (!class_exists($class)) { |
|
60 | 60 | throw new RepositoryException("Class {$class} not found."); |
61 | 61 | } |
62 | 62 | |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | */ |
104 | 104 | public function with($with) |
105 | 105 | { |
106 | - if (! is_array($with)) { |
|
106 | + if (!is_array($with)) { |
|
107 | 107 | $with = func_get_args(); |
108 | 108 | } |
109 | 109 |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | */ |
41 | 41 | public function __construct($treeType = null) |
42 | 42 | { |
43 | - if (! is_null($treeType)) { |
|
43 | + if (!is_null($treeType)) { |
|
44 | 44 | $this->setTreeType($treeType); |
45 | 45 | } |
46 | 46 | } |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | { |
55 | 55 | $this->treeType = new $treeType($this); |
56 | 56 | |
57 | - if (! ($this->treeType instanceof TreeTypeInterface)) { |
|
57 | + if (!($this->treeType instanceof TreeTypeInterface)) { |
|
58 | 58 | throw new DisplayTreeException('Tree type class must be instanced of [SleepingOwl\Admin\Contracts\Display\Tree\TreeTypeInterface]'); |
59 | 59 | } |
60 | 60 | } |
@@ -20,9 +20,9 @@ discard block |
||
20 | 20 | */ |
21 | 21 | public function dependentSelect(Request $request, ModelConfigurationInterface $model, $field, $id = null) |
22 | 22 | { |
23 | - if (! is_null($id)) { |
|
23 | + if (!is_null($id)) { |
|
24 | 24 | $item = $model->getRepository()->find($id); |
25 | - if (is_null($item) || ! $model->isEditable($item)) { |
|
25 | + if (is_null($item) || !$model->isEditable($item)) { |
|
26 | 26 | return new JsonResponse([ |
27 | 27 | 'message' => trans('lang.message.access_denied'), |
28 | 28 | ], 403); |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | |
31 | 31 | $form = $model->fireEdit($id); |
32 | 32 | } else { |
33 | - if (! $model->isCreatable()) { |
|
33 | + if (!$model->isCreatable()) { |
|
34 | 34 | return new JsonResponse([ |
35 | 35 | 'message' => trans('lang.message.access_denied'), |
36 | 36 | ], 403); |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | } |
58 | 58 | |
59 | 59 | return new JsonResponse([ |
60 | - 'output' => collect($options)->map(function ($value, $key) { |
|
60 | + 'output' => collect($options)->map(function($value, $key) { |
|
61 | 61 | return ['id' => $key, 'name' => $value]; |
62 | 62 | }), |
63 | 63 | 'selected' => $element->getValueFromModel(), |
@@ -74,9 +74,9 @@ discard block |
||
74 | 74 | */ |
75 | 75 | public function multiselectSearch(Request $request, ModelConfigurationInterface $model, $field, $id = null) |
76 | 76 | { |
77 | - if (! is_null($id)) { |
|
77 | + if (!is_null($id)) { |
|
78 | 78 | $item = $model->getRepository()->find($id); |
79 | - if (is_null($item) || ! $model->isEditable($item)) { |
|
79 | + if (is_null($item) || !$model->isEditable($item)) { |
|
80 | 80 | return new JsonResponse([ |
81 | 81 | 'message' => trans('lang.message.access_denied'), |
82 | 82 | ], 403); |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | |
85 | 85 | $form = $model->fireEdit($id); |
86 | 86 | } else { |
87 | - if (! $model->isCreatable()) { |
|
87 | + if (!$model->isCreatable()) { |
|
88 | 88 | return new JsonResponse([ |
89 | 89 | 'message' => trans('lang.message.access_denied'), |
90 | 90 | ], 403); |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | return new JsonResponse( |
108 | 108 | $model::where($request->field, 'like', "%{$request->q}%") |
109 | 109 | ->get() |
110 | - ->map(function ($item) use ($field) { |
|
110 | + ->map(function($item) use ($field) { |
|
111 | 111 | return [ |
112 | 112 | 'tag_name' => $item->{$field}, |
113 | 113 | 'id' => $item->id, |
@@ -128,9 +128,9 @@ discard block |
||
128 | 128 | */ |
129 | 129 | public function selectSearch(Request $request, ModelConfigurationInterface $model, $field, $id = null) |
130 | 130 | { |
131 | - if (! is_null($id)) { |
|
131 | + if (!is_null($id)) { |
|
132 | 132 | $item = $model->getRepository()->find($id); |
133 | - if (is_null($item) || ! $model->isEditable($item)) { |
|
133 | + if (is_null($item) || !$model->isEditable($item)) { |
|
134 | 134 | return new JsonResponse([ |
135 | 135 | 'message' => trans('lang.message.access_denied'), |
136 | 136 | ], 403); |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | |
139 | 139 | $form = $model->fireEdit($id); |
140 | 140 | } else { |
141 | - if (! $model->isCreatable()) { |
|
141 | + if (!$model->isCreatable()) { |
|
142 | 142 | return new JsonResponse([ |
143 | 143 | 'message' => trans('lang.message.access_denied'), |
144 | 144 | ], 403); |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | return new JsonResponse( |
162 | 162 | $model::where($request->field, 'like', "%{$request->q}%") |
163 | 163 | ->get() |
164 | - ->map(function ($item) use ($field) { |
|
164 | + ->map(function($item) use ($field) { |
|
165 | 165 | return [ |
166 | 166 | 'tag_name' => $item->{$field}, |
167 | 167 | 'id' => $item->id, |
@@ -31,17 +31,17 @@ discard block |
||
31 | 31 | $this->initializeNavigation(); |
32 | 32 | $this->registerAliases(); |
33 | 33 | |
34 | - $this->app->singleton('sleeping_owl.widgets', function () { |
|
34 | + $this->app->singleton('sleeping_owl.widgets', function() { |
|
35 | 35 | return new WidgetsRegistry($this->app); |
36 | 36 | }); |
37 | 37 | |
38 | - $this->app->booted(function () { |
|
38 | + $this->app->booted(function() { |
|
39 | 39 | $this->app['sleeping_owl.widgets']->placeWidgets( |
40 | 40 | $this->app[ViewFactory::class] |
41 | 41 | ); |
42 | 42 | }); |
43 | 43 | |
44 | - $this->app->booted(function () { |
|
44 | + $this->app->booted(function() { |
|
45 | 45 | $this->registerCustomRoutes(); |
46 | 46 | $this->registerDefaultRoutes(); |
47 | 47 | $this->registerNavigationFile(); |
@@ -54,11 +54,11 @@ discard block |
||
54 | 54 | |
55 | 55 | protected function registerTemplate() |
56 | 56 | { |
57 | - $this->app->singleton('assets.packages', function ($app) { |
|
57 | + $this->app->singleton('assets.packages', function($app) { |
|
58 | 58 | return new \KodiCMS\Assets\PackageManager(); |
59 | 59 | }); |
60 | 60 | |
61 | - $this->app->singleton('sleeping_owl.meta', function ($app) { |
|
61 | + $this->app->singleton('sleeping_owl.meta', function($app) { |
|
62 | 62 | return new \SleepingOwl\Admin\Templates\Meta( |
63 | 63 | new \SleepingOwl\Admin\Templates\Assets( |
64 | 64 | $app['assets.packages'] |
@@ -66,8 +66,8 @@ discard block |
||
66 | 66 | ); |
67 | 67 | }); |
68 | 68 | |
69 | - $this->app->singleton('sleeping_owl.template', function ($app) { |
|
70 | - if (! class_exists($class = $this->getConfig('template'))) { |
|
69 | + $this->app->singleton('sleeping_owl.template', function($app) { |
|
70 | + if (!class_exists($class = $this->getConfig('template'))) { |
|
71 | 71 | throw new TemplateException("Template class [{$class}] not found"); |
72 | 72 | } |
73 | 73 | |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | */ |
97 | 97 | protected function getBootstrapPath($path = null) |
98 | 98 | { |
99 | - if (! is_null($path)) { |
|
99 | + if (!is_null($path)) { |
|
100 | 100 | $path = DIRECTORY_SEPARATOR.$path; |
101 | 101 | } |
102 | 102 | |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | $this->app[WidgetsRegistryInterface::class]->registerWidget($messageType); |
122 | 122 | } |
123 | 123 | |
124 | - $this->app->singleton('sleeping_owl.message', function () use ($messageTypes) { |
|
124 | + $this->app->singleton('sleeping_owl.message', function() use ($messageTypes) { |
|
125 | 125 | return new \SleepingOwl\Admin\Widgets\Messages\MessageStack($messageTypes); |
126 | 126 | }); |
127 | 127 | } |
@@ -135,14 +135,14 @@ discard block |
||
135 | 135 | $this->app->bind(\KodiComponents\Navigation\Contracts\PageInterface::class, \SleepingOwl\Admin\Navigation\Page::class); |
136 | 136 | $this->app->bind(\KodiComponents\Navigation\Contracts\BadgeInterface::class, \SleepingOwl\Admin\Navigation\Badge::class); |
137 | 137 | |
138 | - $this->app->singleton('sleeping_owl.navigation', function () { |
|
138 | + $this->app->singleton('sleeping_owl.navigation', function() { |
|
139 | 139 | return new \SleepingOwl\Admin\Navigation(); |
140 | 140 | }); |
141 | 141 | } |
142 | 142 | |
143 | 143 | protected function registerWysiwyg() |
144 | 144 | { |
145 | - $this->app->singleton('sleeping_owl.wysiwyg', function () { |
|
145 | + $this->app->singleton('sleeping_owl.wysiwyg', function() { |
|
146 | 146 | return new \SleepingOwl\Admin\Wysiwyg\Manager($this->app); |
147 | 147 | }); |
148 | 148 | } |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | { |
155 | 155 | $directory = $this->getBootstrapPath(); |
156 | 156 | |
157 | - if (! is_dir($directory)) { |
|
157 | + if (!is_dir($directory)) { |
|
158 | 158 | return; |
159 | 159 | } |
160 | 160 | |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | ->notName('routes.php') |
165 | 165 | ->notName('navigation.php') |
166 | 166 | ->in($directory) |
167 | - ->sort(function ($a) { |
|
167 | + ->sort(function($a) { |
|
168 | 168 | return $a->getFilename() != 'bootstrap.php'; |
169 | 169 | }); |
170 | 170 | |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | protected function registerCustomRoutes() |
182 | 182 | { |
183 | 183 | if (file_exists($file = $this->getBootstrapPath('routes.php'))) { |
184 | - $this->registerRoutes(function (Router $route) use ($file) { |
|
184 | + $this->registerRoutes(function(Router $route) use ($file) { |
|
185 | 185 | require $file; |
186 | 186 | }); |
187 | 187 | } |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | |
190 | 190 | protected function registerDefaultRoutes() |
191 | 191 | { |
192 | - $this->registerRoutes(function (Router $router) { |
|
192 | + $this->registerRoutes(function(Router $router) { |
|
193 | 193 | (new ModelRouter($this->app, $router))->register($this->app['sleeping_owl']->getModels()); |
194 | 194 | |
195 | 195 | if (file_exists($routesFile = __DIR__.'/../Http/routes.php')) { |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | $this->app['router']->group([ |
209 | 209 | 'prefix' => $this->getConfig('url_prefix'), |
210 | 210 | 'middleware' => $this->getConfig('middleware'), |
211 | - ], function ($route) use ($callback) { |
|
211 | + ], function($route) use ($callback) { |
|
212 | 212 | call_user_func($callback, $route); |
213 | 213 | }); |
214 | 214 | } |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | */ |
67 | 67 | public function longName() |
68 | 68 | { |
69 | - return $this->name() . ' v.'. $this->version(); |
|
69 | + return $this->name().' v.'.$this->version(); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | /** |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | */ |
103 | 103 | public function assetPath($path = null) |
104 | 104 | { |
105 | - return ! is_null($path) ? $this->assetDir().'/'.ltrim($path, '/') : $this->assetDir(); |
|
105 | + return !is_null($path) ? $this->assetDir().'/'.ltrim($path, '/') : $this->assetDir(); |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | /** |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (! function_exists('resources_url')) { |
|
3 | +if (!function_exists('resources_url')) { |
|
4 | 4 | /** |
5 | 5 | * @param string $path |
6 | 6 | * |