@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | try { |
34 | 34 | $blobUri = $request->input('bloburi'); |
35 | 35 | $method = $request->input('_method'); |
36 | - $permissions = '' ; |
|
36 | + $permissions = ''; |
|
37 | 37 | if (strtolower($method) === 'put') { |
38 | 38 | $permissions = 'w'; |
39 | 39 | } else if (strtolower($method) === 'delete') { |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | $now = new DateTime("now", new DateTimeZone("UTC")); |
49 | 49 | $expire = $now->modify('+15 min'); |
50 | 50 | |
51 | - $path = $this->config->get('filesystems.disks.' . $disk .'.container') . str_replace(azureEndpoint($disk), '', $blobUri); |
|
51 | + $path = $this->config->get('filesystems.disks.' . $disk . '.container') . str_replace(azureEndpoint($disk), '', $blobUri); |
|
52 | 52 | $sasUrl = $blobUri . '?' . $this->blobSharedAccessSignatureHelper->generateBlobServiceSharedAccessSignatureToken('b', $path, $permissions, $expire); |
53 | 53 | return $listener->uploadIsSigned($sasUrl, false); |
54 | 54 | } catch (\Exception $e) { |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | $items = $this->getIndexItems($scopes); |
100 | 100 | |
101 | 101 | return [ |
102 | - 'items' => $items->map(function ($item) { |
|
102 | + 'items' => $items->map(function($item) { |
|
103 | 103 | return $item->toCmsArray(); |
104 | 104 | })->toArray(), |
105 | 105 | 'maxPage' => $items->lastPage(), |
@@ -220,11 +220,11 @@ discard block |
||
220 | 220 | { |
221 | 221 | $ids = explode(',', $this->request->input('ids')); |
222 | 222 | |
223 | - $metadatasFromRequest = $this->getExtraMetadatas()->reject(function ($meta) { |
|
223 | + $metadatasFromRequest = $this->getExtraMetadatas()->reject(function($meta) { |
|
224 | 224 | return is_null($meta); |
225 | 225 | })->toArray(); |
226 | 226 | |
227 | - $extraMetadatas = array_diff_key($metadatasFromRequest, array_flip((array)$this->request->get('fieldsRemovedFromBulkEditing', []))); |
|
227 | + $extraMetadatas = array_diff_key($metadatasFromRequest, array_flip((array) $this->request->get('fieldsRemovedFromBulkEditing', []))); |
|
228 | 228 | |
229 | 229 | if (in_array('tags', $this->request->get('fieldsRemovedFromBulkEditing', []))) { |
230 | 230 | $this->repository->addIgnoreFieldsBeforeSave('bulk_tags'); |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | $items = $this->getIndexItems($scopes); |
245 | 245 | |
246 | 246 | return $this->responseFactory->json([ |
247 | - 'items' => $items->map(function ($item) { |
|
247 | + 'items' => $items->map(function($item) { |
|
248 | 248 | return $item->toCmsArray(); |
249 | 249 | })->toArray(), |
250 | 250 | 'tags' => $this->repository->getTagsList(), |
@@ -296,7 +296,7 @@ discard block |
||
296 | 296 | */ |
297 | 297 | private function getExtraMetadatas() |
298 | 298 | { |
299 | - return Collection::make($this->customFields)->mapWithKeys(function ($field) { |
|
299 | + return Collection::make($this->customFields)->mapWithKeys(function($field) { |
|
300 | 300 | $fieldInRequest = $this->request->get($field['name']); |
301 | 301 | |
302 | 302 | if (isset($field['type']) && $field['type'] === 'checkbox') { |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | $items = $this->getIndexItems($scopes); |
93 | 93 | |
94 | 94 | return [ |
95 | - 'items' => $items->map(function ($item) { |
|
95 | + 'items' => $items->map(function($item) { |
|
96 | 96 | return $this->buildFile($item); |
97 | 97 | })->toArray(), |
98 | 98 | 'maxPage' => $items->lastPage(), |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | private function buildFile($item) |
109 | 109 | { |
110 | 110 | return $item->toCmsArray() + [ |
111 | - 'tags' => $item->tags->map(function ($tag) { |
|
111 | + 'tags' => $item->tags->map(function($tag) { |
|
112 | 112 | return $tag->name; |
113 | 113 | }), |
114 | 114 | 'deleteUrl' => $item->canDeleteSafely() ? moduleRoute($this->moduleName, $this->routePrefix, 'destroy', $item->id) : null, |
@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | $items = $this->getIndexItems($scopes); |
231 | 231 | |
232 | 232 | return $this->responseFactory->json([ |
233 | - 'items' => $items->map(function ($item) { |
|
233 | + 'items' => $items->map(function($item) { |
|
234 | 234 | return $this->buildFile($item); |
235 | 235 | })->toArray(), |
236 | 236 | 'tags' => $this->repository->getTagsList(), |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | if (method_exists($query->getModel(), 'translations')) { |
20 | 20 | $locale = $locale == null ? app()->getLocale() : $locale; |
21 | 21 | |
22 | - $query->whereHas('translations', function ($query) use ($locale) { |
|
22 | + $query->whereHas('translations', function($query) use ($locale) { |
|
23 | 23 | $query->whereActive(true); |
24 | 24 | $query->whereLocale($locale); |
25 | 25 | |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | } |
29 | 29 | }); |
30 | 30 | |
31 | - return $query->with(['translations' => function ($query) use ($locale) { |
|
31 | + return $query->with(['translations' => function($query) use ($locale) { |
|
32 | 32 | $query->whereActive(true); |
33 | 33 | $query->whereLocale($locale); |
34 | 34 | |
@@ -48,14 +48,14 @@ discard block |
||
48 | 48 | $locale = $locale == null ? app()->getLocale() : $locale; |
49 | 49 | |
50 | 50 | return $query |
51 | - ->join($translationTable, function (JoinClause $join) use ($translationTable, $localeKey, $table, $keyName) { |
|
51 | + ->join($translationTable, function(JoinClause $join) use ($translationTable, $localeKey, $table, $keyName) { |
|
52 | 52 | $join |
53 | - ->on($translationTable.'.'.$this->getRelationKey(), '=', $table.'.'.$keyName) |
|
54 | - ->where($translationTable.'.'.$localeKey, $this->locale()); |
|
53 | + ->on($translationTable . '.' . $this->getRelationKey(), '=', $table . '.' . $keyName) |
|
54 | + ->where($translationTable . '.' . $localeKey, $this->locale()); |
|
55 | 55 | }) |
56 | - ->where($translationTable.'.'.$this->getLocaleKey(), $locale) |
|
57 | - ->orderBy($translationTable.'.'.$orderField, $orderType) |
|
58 | - ->select($table.'.*') |
|
56 | + ->where($translationTable . '.' . $this->getLocaleKey(), $locale) |
|
57 | + ->orderBy($translationTable . '.' . $orderField, $orderType) |
|
58 | + ->select($table . '.*') |
|
59 | 59 | ->with('translations'); |
60 | 60 | } |
61 | 61 | |
@@ -91,14 +91,14 @@ discard block |
||
91 | 91 | |
92 | 92 | public function getActiveLanguages() |
93 | 93 | { |
94 | - return $this->translations->map(function ($translation) { |
|
94 | + return $this->translations->map(function($translation) { |
|
95 | 95 | return [ |
96 | 96 | 'shortlabel' => strtoupper($translation->locale), |
97 | 97 | 'label' => getLanguageLabelFromLocaleCode($translation->locale), |
98 | 98 | 'value' => $translation->locale, |
99 | 99 | 'published' => $translation->active ?? false, |
100 | 100 | ]; |
101 | - })->sortBy(function ($translation) { |
|
101 | + })->sortBy(function($translation) { |
|
102 | 102 | $localesOrdered = config('translatable.locales'); |
103 | 103 | return array_search($translation['value'], $localesOrdered); |
104 | 104 | })->values(); |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | |
107 | 107 | public function translatedAttribute($key) |
108 | 108 | { |
109 | - return $this->translations->mapWithKeys(function ($translation) use ($key) { |
|
109 | + return $this->translations->mapWithKeys(function($translation) use ($key) { |
|
110 | 110 | return [$translation->locale => $this->translate($translation->locale)->$key]; |
111 | 111 | }); |
112 | 112 | } |
@@ -51,13 +51,13 @@ |
||
51 | 51 | // anonymous functions are used to let configuration dictate |
52 | 52 | // the execution of the appropriate implementation |
53 | 53 | $endpointByType = [ |
54 | - 'local' => function () { |
|
54 | + 'local' => function() { |
|
55 | 55 | return $this->urlGenerator->route('admin.media-library.medias.store'); |
56 | 56 | }, |
57 | - 's3' => function () use ($libraryDisk) { |
|
57 | + 's3' => function() use ($libraryDisk) { |
|
58 | 58 | return s3Endpoint($libraryDisk); |
59 | 59 | }, |
60 | - 'azure' => function () use ($libraryDisk) { |
|
60 | + 'azure' => function() use ($libraryDisk) { |
|
61 | 61 | return azureEndpoint($libraryDisk); |
62 | 62 | }, |
63 | 63 | ]; |
@@ -51,13 +51,13 @@ |
||
51 | 51 | // anonymous functions are used to let configuration dictate |
52 | 52 | // the execution of the appropriate implementation |
53 | 53 | $endpointByType = [ |
54 | - 'local' => function () { |
|
54 | + 'local' => function() { |
|
55 | 55 | return $this->urlGenerator->route('admin.file-library.files.store'); |
56 | 56 | }, |
57 | - 's3' => function () use ($libraryDisk) { |
|
57 | + 's3' => function() use ($libraryDisk) { |
|
58 | 58 | return s3Endpoint($libraryDisk); |
59 | 59 | }, |
60 | - 'azure' => function () use ($libraryDisk) { |
|
60 | + 'azure' => function() use ($libraryDisk) { |
|
61 | 61 | return azureEndpoint($libraryDisk); |
62 | 62 | }, |
63 | 63 | ]; |
@@ -102,7 +102,7 @@ |
||
102 | 102 | 'hasFiles', |
103 | 103 | 'hasPosition', |
104 | 104 | 'hasRevisions', |
105 | - ])->filter(function ($enabled) { |
|
105 | + ])->filter(function($enabled) { |
|
106 | 106 | return $enabled; |
107 | 107 | }); |
108 | 108 |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | */ |
104 | 104 | public function getFormFieldsForBrowser($object, $relation, $routePrefix = null, $titleKey = 'title', $moduleName = null) |
105 | 105 | { |
106 | - return $object->$relation->map(function ($relatedElement) use ($titleKey, $routePrefix, $relation, $moduleName) { |
|
106 | + return $object->$relation->map(function($relatedElement) use ($titleKey, $routePrefix, $relation, $moduleName) { |
|
107 | 107 | return [ |
108 | 108 | 'id' => $relatedElement->id, |
109 | 109 | 'name' => $relatedElement->titleInBrowser ?? $relatedElement->$titleKey, |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | */ |
123 | 123 | public function getFormFieldsForRelatedBrowser($object, $relation) |
124 | 124 | { |
125 | - return $object->getRelated($relation)->map(function ($relatedElement) { |
|
125 | + return $object->getRelated($relation)->map(function($relatedElement) { |
|
126 | 126 | return ($relatedElement != null) ? [ |
127 | 127 | 'id' => $relatedElement->id, |
128 | 128 | 'name' => $relatedElement->titleInBrowser ?? $relatedElement->title, |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | ]) + (classHasTrait($relatedElement, HasMedias::class) ? [ |
133 | 133 | 'thumbnail' => $relatedElement->defaultCmsImage(['w' => 100, 'h' => 100]), |
134 | 134 | ] : []) : []; |
135 | - })->reject(function ($item) { |
|
135 | + })->reject(function($item) { |
|
136 | 136 | return empty($item); |
137 | 137 | })->values()->toArray(); |
138 | 138 | } |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | |
184 | 184 | foreach ($fields as $field) { |
185 | 185 | if (in_array($field, $translatedAttributes)) { |
186 | - $query->orWhereHas('translations', function ($q) use ($field, $search) { |
|
186 | + $query->orWhereHas('translations', function($q) use ($field, $search) { |
|
187 | 187 | $q->where($field, $this->getLikeOperator(), "%{$search}%"); |
188 | 188 | }); |
189 | 189 | } else { |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | */ |
211 | 211 | public function create($fields) |
212 | 212 | { |
213 | - return DB::transaction(function () use ($fields) { |
|
213 | + return DB::transaction(function() use ($fields) { |
|
214 | 214 | $original_fields = $fields; |
215 | 215 | |
216 | 216 | $fields = $this->prepareFieldsBeforeCreate($fields); |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | */ |
266 | 266 | public function update($id, $fields) |
267 | 267 | { |
268 | - DB::transaction(function () use ($id, $fields) { |
|
268 | + DB::transaction(function() use ($id, $fields) { |
|
269 | 269 | $object = $this->model->findOrFail($id); |
270 | 270 | |
271 | 271 | $this->beforeSave($object, $fields); |
@@ -288,7 +288,7 @@ discard block |
||
288 | 288 | */ |
289 | 289 | public function updateBasic($id, $values, $scopes = []) |
290 | 290 | { |
291 | - return DB::transaction(function () use ($id, $values, $scopes) { |
|
291 | + return DB::transaction(function() use ($id, $values, $scopes) { |
|
292 | 292 | // apply scopes if no id provided |
293 | 293 | if (is_null($id)) { |
294 | 294 | $query = $this->model->query(); |
@@ -299,7 +299,7 @@ discard block |
||
299 | 299 | |
300 | 300 | $query->update($values); |
301 | 301 | |
302 | - $query->get()->each(function ($object) use ($values) { |
|
302 | + $query->get()->each(function($object) use ($values) { |
|
303 | 303 | $this->afterUpdateBasic($object, $values); |
304 | 304 | }); |
305 | 305 | |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | $query = $this->model->whereIn('id', $id); |
312 | 312 | $query->update($values); |
313 | 313 | |
314 | - $query->get()->each(function ($object) use ($values) { |
|
314 | + $query->get()->each(function($object) use ($values) { |
|
315 | 315 | $this->afterUpdateBasic($object, $values); |
316 | 316 | }); |
317 | 317 | |
@@ -334,7 +334,7 @@ discard block |
||
334 | 334 | */ |
335 | 335 | public function setNewOrder($ids) |
336 | 336 | { |
337 | - DB::transaction(function () use ($ids) { |
|
337 | + DB::transaction(function() use ($ids) { |
|
338 | 338 | $this->model->setNewOrder($ids); |
339 | 339 | }, 3); |
340 | 340 | } |
@@ -345,7 +345,7 @@ discard block |
||
345 | 345 | */ |
346 | 346 | public function delete($id) |
347 | 347 | { |
348 | - return DB::transaction(function () use ($id) { |
|
348 | + return DB::transaction(function() use ($id) { |
|
349 | 349 | if (($object = $this->model->find($id)) === null) { |
350 | 350 | return false; |
351 | 351 | } |
@@ -365,9 +365,9 @@ discard block |
||
365 | 365 | */ |
366 | 366 | public function bulkDelete($ids) |
367 | 367 | { |
368 | - return DB::transaction(function () use ($ids) { |
|
368 | + return DB::transaction(function() use ($ids) { |
|
369 | 369 | try { |
370 | - Collection::make($ids)->each(function ($id) { |
|
370 | + Collection::make($ids)->each(function($id) { |
|
371 | 371 | $this->delete($id); |
372 | 372 | }); |
373 | 373 | } catch (\Exception $e) { |
@@ -385,7 +385,7 @@ discard block |
||
385 | 385 | */ |
386 | 386 | public function restore($id) |
387 | 387 | { |
388 | - return DB::transaction(function () use ($id) { |
|
388 | + return DB::transaction(function() use ($id) { |
|
389 | 389 | if (($object = $this->model->withTrashed()->find($id)) != null) { |
390 | 390 | $object->restore(); |
391 | 391 | $this->afterRestore($object); |
@@ -402,14 +402,14 @@ discard block |
||
402 | 402 | */ |
403 | 403 | public function bulkRestore($ids) |
404 | 404 | { |
405 | - return DB::transaction(function () use ($ids) { |
|
405 | + return DB::transaction(function() use ($ids) { |
|
406 | 406 | try { |
407 | 407 | $query = $this->model->withTrashed()->whereIn('id', $ids); |
408 | 408 | $objects = $query->get(); |
409 | 409 | |
410 | 410 | $query->restore(); |
411 | 411 | |
412 | - $objects->each(function ($object) { |
|
412 | + $objects->each(function($object) { |
|
413 | 413 | $this->afterRestore($object); |
414 | 414 | }); |
415 | 415 | } catch (\Exception $e) { |
@@ -684,7 +684,7 @@ discard block |
||
684 | 684 | { |
685 | 685 | if (isset($scopes[$scopeField])) { |
686 | 686 | $id = $scopes[$scopeField]; |
687 | - $query->whereHas($scopeRelation, function ($query) use ($id, $scopeField) { |
|
687 | + $query->whereHas($scopeRelation, function($query) use ($id, $scopeField) { |
|
688 | 688 | $query->where($scopeField, $id); |
689 | 689 | }); |
690 | 690 | unset($scopes[$scopeField]); |
@@ -715,7 +715,7 @@ discard block |
||
715 | 715 | { |
716 | 716 | |
717 | 717 | if (isset($scopes[$scopeField]) && is_string($scopes[$scopeField])) { |
718 | - $query->where(function ($query) use (&$scopes, $scopeField, $orFields) { |
|
718 | + $query->where(function($query) use (&$scopes, $scopeField, $orFields) { |
|
719 | 719 | foreach ($orFields as $field) { |
720 | 720 | $query->orWhere($field, $this->getLikeOperator(), '%' . $scopes[$scopeField] . '%'); |
721 | 721 | unset($scopes[$field]); |
@@ -791,11 +791,11 @@ discard block |
||
791 | 791 | |
792 | 792 | $uniqueTraits = array_unique(array_map('class_basename', $traits)); |
793 | 793 | |
794 | - $methods = array_map(function (string $trait) use ($method) { |
|
794 | + $methods = array_map(function(string $trait) use ($method) { |
|
795 | 795 | return $method . $trait; |
796 | 796 | }, $uniqueTraits); |
797 | 797 | |
798 | - return array_filter($methods, function (string $method) { |
|
798 | + return array_filter($methods, function(string $method) { |
|
799 | 799 | return method_exists(get_called_class(), $method); |
800 | 800 | }); |
801 | 801 | } |