@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | * |
74 | 74 | * @param array $elements |
75 | 75 | */ |
76 | - public function __construct(array $elements = []) |
|
76 | + public function __construct(array $elements = [ ]) |
|
77 | 77 | { |
78 | 78 | parent::__construct($elements); |
79 | 79 | |
@@ -94,14 +94,14 @@ discard block |
||
94 | 94 | } |
95 | 95 | |
96 | 96 | $this->initialized = true; |
97 | - $this->repository = app(RepositoryInterface::class, [$this->class]); |
|
97 | + $this->repository = app(RepositoryInterface::class, [ $this->class ]); |
|
98 | 98 | |
99 | 99 | $this->setModel(app($this->class)); |
100 | 100 | |
101 | 101 | parent::initialize(); |
102 | 102 | |
103 | - $this->getElements()->each(function ($element) { |
|
104 | - if ($element instanceof Upload and ! $this->hasHtmlAttribute('enctype')) { |
|
103 | + $this->getElements()->each(function($element) { |
|
104 | + if ($element instanceof Upload and !$this->hasHtmlAttribute('enctype')) { |
|
105 | 105 | $this->setHtmlAttribute('enctype', 'multipart/form-data'); |
106 | 106 | } |
107 | 107 | }); |
@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | */ |
231 | 231 | public function setItems($items) |
232 | 232 | { |
233 | - if (! is_array($items)) { |
|
233 | + if (!is_array($items)) { |
|
234 | 234 | $items = func_get_args(); |
235 | 235 | } |
236 | 236 | |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | */ |
258 | 258 | public function setId($id) |
259 | 259 | { |
260 | - if (is_null($this->id) and ! is_null($id) and ($model = $this->getRepository()->find($id))) { |
|
260 | + if (is_null($this->id) and !is_null($id) and ($model = $this->getRepository()->find($id))) { |
|
261 | 261 | $this->id = $id; |
262 | 262 | $this->setModel($model); |
263 | 263 | } |
@@ -323,7 +323,7 @@ discard block |
||
323 | 323 | $model = $this->getModel(); |
324 | 324 | |
325 | 325 | foreach ($model->getRelations() as $name => $relation) { |
326 | - if ($model->{$name}() instanceof BelongsTo && ! is_null($relation)) { |
|
326 | + if ($model->{$name}() instanceof BelongsTo && !is_null($relation)) { |
|
327 | 327 | $relation->save(); |
328 | 328 | $model->{$name}()->associate($relation); |
329 | 329 | } |
@@ -335,7 +335,7 @@ discard block |
||
335 | 335 | $model = $this->getModel(); |
336 | 336 | |
337 | 337 | foreach ($model->getRelations() as $name => $relation) { |
338 | - if ($model->{$name}() instanceof HasOneOrMany && ! is_null($relation)) { |
|
338 | + if ($model->{$name}() instanceof HasOneOrMany && !is_null($relation)) { |
|
339 | 339 | if (is_array($relation) || $relation instanceof \Traversable) { |
340 | 340 | $model->{$name}()->saveMany($relation); |
341 | 341 | } else { |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | * |
22 | 22 | * @param array $elements |
23 | 23 | */ |
24 | - public function __construct(array $elements = []) |
|
24 | + public function __construct(array $elements = [ ]) |
|
25 | 25 | { |
26 | 26 | $this->elements = new Collection(); |
27 | 27 | parent::__construct($elements); |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | $element = new Column($element); |
68 | 68 | } |
69 | 69 | |
70 | - if (! ($element instanceof ColumnInterface)) { |
|
70 | + if (!($element instanceof ColumnInterface)) { |
|
71 | 71 | throw new \Exception('Column should be instance of ColumnInterface'); |
72 | 72 | } |
73 | 73 | |
@@ -82,16 +82,16 @@ discard block |
||
82 | 82 | { |
83 | 83 | $this->setHtmlAttribute('class', 'row'); |
84 | 84 | |
85 | - $count = $this->getElements()->filter(function (ColumnInterface $column) { |
|
85 | + $count = $this->getElements()->filter(function(ColumnInterface $column) { |
|
86 | 86 | return $column->getWidth() === 0; |
87 | 87 | })->count(); |
88 | 88 | |
89 | - $width = $this->maxWidth - $this->getElements()->sum(function (ColumnInterface $column) { |
|
89 | + $width = $this->maxWidth - $this->getElements()->sum(function(ColumnInterface $column) { |
|
90 | 90 | return $column->getWidth(); |
91 | 91 | }); |
92 | 92 | |
93 | - $this->getElements()->each(function (ColumnInterface $column) use ($width, $count) { |
|
94 | - if (! $column->getWidth()) { |
|
93 | + $this->getElements()->each(function(ColumnInterface $column) use ($width, $count) { |
|
94 | + if (!$column->getWidth()) { |
|
95 | 95 | $column->setWidth(floor($width / $count)); |
96 | 96 | } |
97 | 97 | }); |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | */ |
132 | 132 | public function setSize($size) |
133 | 133 | { |
134 | - $this->getColumns()->each(function (ColumnInterface $column) use ($size) { |
|
134 | + $this->getColumns()->each(function(ColumnInterface $column) use ($size) { |
|
135 | 135 | $column->setSize($size); |
136 | 136 | }); |
137 | 137 | } |
@@ -14,7 +14,7 @@ |
||
14 | 14 | * |
15 | 15 | * @param array $elements |
16 | 16 | */ |
17 | - public function __construct(array $elements = []) |
|
17 | + public function __construct(array $elements = [ ]) |
|
18 | 18 | { |
19 | 19 | parent::__construct(); |
20 | 20 |
@@ -87,6 +87,6 @@ |
||
87 | 87 | | |
88 | 88 | */ |
89 | 89 | |
90 | - 'attributes' => [], |
|
90 | + 'attributes' => [ ], |
|
91 | 91 | |
92 | 92 | ]; |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (! function_exists('resources_url')) { |
|
3 | +if (!function_exists('resources_url')) { |
|
4 | 4 | function resources_url($path) |
5 | 5 | { |
6 | 6 | return '/packages/sleepingowl/default/'.$path; |
@@ -14,11 +14,11 @@ discard block |
||
14 | 14 | */ |
15 | 15 | |
16 | 16 | WysiwygManager::register('ckeditor') |
17 | - ->js(null, '//cdn.ckeditor.com/4.5.7/standard/ckeditor.js', ['jquery']); |
|
17 | + ->js(null, '//cdn.ckeditor.com/4.5.7/standard/ckeditor.js', [ 'jquery' ]); |
|
18 | 18 | |
19 | 19 | WysiwygManager::register('tinymce') |
20 | - ->js(null, '//cdn.tinymce.com/4/tinymce.min.js', ['jquery']); |
|
20 | + ->js(null, '//cdn.tinymce.com/4/tinymce.min.js', [ 'jquery' ]); |
|
21 | 21 | |
22 | 22 | WysiwygManager::register('simplemde', new \SleepingOwl\Admin\Wysiwyg\MarkdownFilter()) |
23 | - ->js(null, '//cdn.jsdelivr.net/simplemde/latest/simplemde.min.js', ['jquery']) |
|
23 | + ->js(null, '//cdn.jsdelivr.net/simplemde/latest/simplemde.min.js', [ 'jquery' ]) |
|
24 | 24 | ->css(null, '//cdn.jsdelivr.net/simplemde/latest/simplemde.min.css'); |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | | |
46 | 46 | */ |
47 | 47 | |
48 | - 'middleware' => ['web'], |
|
48 | + 'middleware' => [ 'web' ], |
|
49 | 49 | |
50 | 50 | /* |
51 | 51 | |-------------------------------------------------------------------------- |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | * See https://github.com/NextStepWebs/simplemde-markdown-editor |
134 | 134 | */ |
135 | 135 | 'simplemde' => [ |
136 | - 'hideIcons' => ['side-by-side', 'fullscreen'], |
|
136 | + 'hideIcons' => [ 'side-by-side', 'fullscreen' ], |
|
137 | 137 | ], |
138 | 138 | ], |
139 | 139 | |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | | Select default settings for datatable |
146 | 146 | | |
147 | 147 | */ |
148 | - 'datatables' => [], |
|
148 | + 'datatables' => [ ], |
|
149 | 149 | |
150 | 150 | /* |
151 | 151 | |-------------------------------------------------------------------------- |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | { |
10 | 10 | public function __construct() |
11 | 11 | { |
12 | - Meta::addJs('admin-default', resources_url('js/admin-app.js'), ['admin-scripts']) |
|
12 | + Meta::addJs('admin-default', resources_url('js/admin-app.js'), [ 'admin-scripts' ]) |
|
13 | 13 | ->addJs('admin-scripts', route('admin.scripts')) |
14 | 14 | ->addCss('admin-default', resources_url('css/admin-app.css')); |
15 | 15 | } |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | * |
55 | 55 | * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View |
56 | 56 | */ |
57 | - public function view($view, $data = [], $mergeData = []) |
|
57 | + public function view($view, $data = [ ], $mergeData = [ ]) |
|
58 | 58 | { |
59 | 59 | if ($view instanceof \Illuminate\View\View) { |
60 | 60 | return $view->with($data); |
@@ -26,16 +26,16 @@ discard block |
||
26 | 26 | { |
27 | 27 | $routeName = 'admin.form.element.'.static::$route; |
28 | 28 | |
29 | - if (! $router->has($routeName)) { |
|
30 | - $router->post('{adminModel}/'.static::$route.'/{field}/{id?}', ['as' => $routeName, function ( |
|
29 | + if (!$router->has($routeName)) { |
|
30 | + $router->post('{adminModel}/'.static::$route.'/{field}/{id?}', [ 'as' => $routeName, function( |
|
31 | 31 | Request $request, |
32 | 32 | ModelConfigurationInterface $model, |
33 | 33 | $field, |
34 | 34 | $id = null |
35 | 35 | ) { |
36 | - if (! is_null($id)) { |
|
36 | + if (!is_null($id)) { |
|
37 | 37 | $item = $model->getRepository()->find($id); |
38 | - if (is_null($item) || ! $model->isEditable($item)) { |
|
38 | + if (is_null($item) || !$model->isEditable($item)) { |
|
39 | 39 | return new JsonResponse([ |
40 | 40 | 'message' => trans('lang.message.access_denied'), |
41 | 41 | ], 403); |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | |
44 | 44 | $form = $model->fireEdit($id); |
45 | 45 | } else { |
46 | - if (! $model->isCreatable()) { |
|
46 | + if (!$model->isCreatable()) { |
|
47 | 47 | return new JsonResponse([ |
48 | 48 | 'message' => trans('lang.message.access_denied'), |
49 | 49 | ], 403); |
@@ -52,11 +52,11 @@ discard block |
||
52 | 52 | $form = $model->fireCreate(); |
53 | 53 | } |
54 | 54 | |
55 | - $messages = []; |
|
56 | - $labels = []; |
|
55 | + $messages = [ ]; |
|
56 | + $labels = [ ]; |
|
57 | 57 | $rules = static::defaultUploadValidationRules(); |
58 | 58 | |
59 | - if (! is_null($element = $form->getElement($field))) { |
|
59 | + if (!is_null($element = $form->getElement($field))) { |
|
60 | 60 | $rules = $element->getUploadValidationRules(); |
61 | 61 | $messages = $element->getUploadValidationMessages(); |
62 | 62 | $labels = $element->getUploadValidationLabels(); |
@@ -76,14 +76,14 @@ discard block |
||
76 | 76 | $file = $request->file('file'); |
77 | 77 | |
78 | 78 | /** @var File $element */ |
79 | - if (! is_null($element = $form->getElement($field))) { |
|
79 | + if (!is_null($element = $form->getElement($field))) { |
|
80 | 80 | $filename = $element->getUploadFileName($file); |
81 | 81 | $path = $element->getUploadPath($file); |
82 | 82 | $settings = $element->getUploadSettings(); |
83 | 83 | } else { |
84 | 84 | $filename = static::defaultUploadFilename($file); |
85 | 85 | $path = static::defaultUploadPath($file); |
86 | - $settings = []; |
|
86 | + $settings = [ ]; |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | static::saveFile($file, public_path($path), $filename, $settings); |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | 'url' => asset($value), |
95 | 95 | 'value' => $value, |
96 | 96 | ]); |
97 | - }]); |
|
97 | + } ]); |
|
98 | 98 | } |
99 | 99 | } |
100 | 100 | |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | protected static function defaultUploadValidationRules() |
143 | 143 | { |
144 | 144 | return [ |
145 | - 'file' => ['required', 'file'], |
|
145 | + 'file' => [ 'required', 'file' ], |
|
146 | 146 | ]; |
147 | 147 | } |
148 | 148 | |
@@ -159,21 +159,21 @@ discard block |
||
159 | 159 | /** |
160 | 160 | * @var array |
161 | 161 | */ |
162 | - protected $uploadSettings = []; |
|
162 | + protected $uploadSettings = [ ]; |
|
163 | 163 | |
164 | 164 | /** |
165 | 165 | * @var array |
166 | 166 | */ |
167 | - protected $uploadValidationRules = ['required', 'file']; |
|
167 | + protected $uploadValidationRules = [ 'required', 'file' ]; |
|
168 | 168 | |
169 | 169 | /** |
170 | 170 | * @return array |
171 | 171 | */ |
172 | 172 | public function getUploadValidationMessages() |
173 | 173 | { |
174 | - $messages = []; |
|
174 | + $messages = [ ]; |
|
175 | 175 | foreach ($this->validationMessages as $rule => $message) { |
176 | - $messages["file.{$rule}"] = $message; |
|
176 | + $messages[ "file.{$rule}" ] = $message; |
|
177 | 177 | } |
178 | 178 | |
179 | 179 | return $messages; |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | */ |
185 | 185 | public function getUploadValidationLabels() |
186 | 186 | { |
187 | - return ['file' => $this->getLabel()]; |
|
187 | + return [ 'file' => $this->getLabel() ]; |
|
188 | 188 | } |
189 | 189 | |
190 | 190 | /** |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | */ |
193 | 193 | public function getUploadValidationRules() |
194 | 194 | { |
195 | - return ['file' => array_unique($this->uploadValidationRules)]; |
|
195 | + return [ 'file' => array_unique($this->uploadValidationRules) ]; |
|
196 | 196 | } |
197 | 197 | |
198 | 198 | /** |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | */ |
203 | 203 | public function getUploadPath(UploadedFile $file) |
204 | 204 | { |
205 | - if (! is_callable($this->uploadPath)) { |
|
205 | + if (!is_callable($this->uploadPath)) { |
|
206 | 206 | return static::defaultUploadPath($file); |
207 | 207 | } |
208 | 208 | |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | */ |
229 | 229 | public function getUploadFileName(UploadedFile $file) |
230 | 230 | { |
231 | - if (! is_callable($this->uploadFileName)) { |
|
231 | + if (!is_callable($this->uploadFileName)) { |
|
232 | 232 | return static::defaultUploadFilename($file); |
233 | 233 | } |
234 | 234 | |
@@ -279,11 +279,11 @@ discard block |
||
279 | 279 | */ |
280 | 280 | public function addValidationRule($rule, $message = null) |
281 | 281 | { |
282 | - $uploadRules = ['file', 'image', 'mime', 'size', 'dimensions', 'max', 'min', 'between']; |
|
282 | + $uploadRules = [ 'file', 'image', 'mime', 'size', 'dimensions', 'max', 'min', 'between' ]; |
|
283 | 283 | |
284 | 284 | foreach ($uploadRules as $uploadRule) { |
285 | 285 | if (strpos($rule, $uploadRule) !== false) { |
286 | - $this->uploadValidationRules[] = $rule; |
|
286 | + $this->uploadValidationRules[ ] = $rule; |
|
287 | 287 | |
288 | 288 | if (is_null($message)) { |
289 | 289 | return $this; |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | /** |
24 | 24 | * @var array |
25 | 25 | */ |
26 | - protected $options = []; |
|
26 | + protected $options = [ ]; |
|
27 | 27 | |
28 | 28 | /** |
29 | 29 | * @var bool |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | /** |
44 | 44 | * @var array |
45 | 45 | */ |
46 | - protected $exclude = []; |
|
46 | + protected $exclude = [ ]; |
|
47 | 47 | |
48 | 48 | /** |
49 | 49 | * @var string|null |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | /** |
54 | 54 | * @var array |
55 | 55 | */ |
56 | - protected $fetchColumns = []; |
|
56 | + protected $fetchColumns = [ ]; |
|
57 | 57 | |
58 | 58 | /** |
59 | 59 | * @var function|\Closure|object callable |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | * @param string|null $label |
66 | 66 | * @param array|Model $options |
67 | 67 | */ |
68 | - public function __construct($path, $label = null, $options = []) |
|
68 | + public function __construct($path, $label = null, $options = [ ]) |
|
69 | 69 | { |
70 | 70 | parent::__construct($path, $label); |
71 | 71 | |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | $modelForOptions = app($modelForOptions); |
97 | 97 | } |
98 | 98 | |
99 | - if (! ($modelForOptions instanceof Model)) { |
|
99 | + if (!($modelForOptions instanceof Model)) { |
|
100 | 100 | throw new SelectException('Class must be instanced of Illuminate\Database\Eloquent\Model'); |
101 | 101 | } |
102 | 102 | |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | */ |
131 | 131 | public function getOptions() |
132 | 132 | { |
133 | - if (! is_null($this->getModelForOptions()) && ! is_null($this->getDisplay())) { |
|
133 | + if (!is_null($this->getModelForOptions()) && !is_null($this->getDisplay())) { |
|
134 | 134 | $this->loadOptions(); |
135 | 135 | } |
136 | 136 | |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | */ |
238 | 238 | public function setFetchColumns($columns) |
239 | 239 | { |
240 | - if (! is_array($columns)) { |
|
240 | + if (!is_array($columns)) { |
|
241 | 241 | $columns = func_get_args(); |
242 | 242 | } |
243 | 243 | |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | */ |
299 | 299 | public function exclude($keys) |
300 | 300 | { |
301 | - if (! is_array($keys)) { |
|
301 | + if (!is_array($keys)) { |
|
302 | 302 | $keys = func_get_args(); |
303 | 303 | } |
304 | 304 | |
@@ -344,14 +344,14 @@ discard block |
||
344 | 344 | ]; |
345 | 345 | |
346 | 346 | if ($this->isReadonly()) { |
347 | - $attributes['disabled'] = 'disabled'; |
|
347 | + $attributes[ 'disabled' ] = 'disabled'; |
|
348 | 348 | } |
349 | 349 | |
350 | 350 | $options = $this->getOptions(); |
351 | 351 | |
352 | 352 | if ($this->isNullable()) { |
353 | - $attributes['data-nullable'] = 'true'; |
|
354 | - $options = [null => trans('sleeping_owl::lang.select.nothing')] + $options; |
|
353 | + $attributes[ 'data-nullable' ] = 'true'; |
|
354 | + $options = [ null => trans('sleeping_owl::lang.select.nothing') ] + $options; |
|
355 | 355 | } |
356 | 356 | |
357 | 357 | $options = array_except($options, $this->exclude); |
@@ -368,7 +368,7 @@ discard block |
||
368 | 368 | */ |
369 | 369 | protected function loadOptions() |
370 | 370 | { |
371 | - $repository = app(RepositoryInterface::class, [$this->getModelForOptions()]); |
|
371 | + $repository = app(RepositoryInterface::class, [ $this->getModelForOptions() ]); |
|
372 | 372 | |
373 | 373 | $key = $repository->getModel()->getKeyName(); |
374 | 374 | |
@@ -379,12 +379,12 @@ discard block |
||
379 | 379 | } |
380 | 380 | |
381 | 381 | if (count($this->fetchColumns) > 0) { |
382 | - $columns = array_merge([$key], $this->fetchColumns); |
|
382 | + $columns = array_merge([ $key ], $this->fetchColumns); |
|
383 | 383 | $options->select($columns); |
384 | 384 | } |
385 | 385 | |
386 | 386 | // call the pre load options query preparer if has be set |
387 | - if (! is_null($preparer = $this->getLoadOptionsQueryPreparer())) { |
|
387 | + if (!is_null($preparer = $this->getLoadOptionsQueryPreparer())) { |
|
388 | 388 | $options = $preparer($this, $options); |
389 | 389 | } |
390 | 390 | |
@@ -401,9 +401,9 @@ discard block |
||
401 | 401 | |
402 | 402 | // iterate for all options and redefine it as |
403 | 403 | // list of KEY and TEXT pair |
404 | - $options = array_map(function ($opt) use ($key, $makeDisplay) { |
|
404 | + $options = array_map(function($opt) use ($key, $makeDisplay) { |
|
405 | 405 | // get the KEY and make the display text |
406 | - return [data_get($opt, $key), $makeDisplay($opt)]; |
|
406 | + return [ data_get($opt, $key), $makeDisplay($opt) ]; |
|
407 | 407 | }, $options); |
408 | 408 | |
409 | 409 | // take options as array with KEY => VALUE pair |