@@ -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 | * |