@@ -57,7 +57,7 @@ |
||
| 57 | 57 | // TODO: document this and actually think about moving to queuable job after content type updates |
| 58 | 58 | public function handle() |
| 59 | 59 | { |
| 60 | - $this->db->table(config('twill.mediables_table', 'twill_mediables'))->orderBy('id')->chunk(100, function ($attached_medias) { |
|
| 60 | + $this->db->table(config('twill.mediables_table', 'twill_mediables'))->orderBy('id')->chunk(100, function($attached_medias) { |
|
| 61 | 61 | foreach ($attached_medias as $attached_media) { |
| 62 | 62 | $uuid = Media::withTrashed()->find($attached_media->media_id, ['uuid'])->uuid; |
| 63 | 63 | |
@@ -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 forceDelete($id) |
| 387 | 387 | { |
| 388 | - return DB::transaction(function () use ($id) { |
|
| 388 | + return DB::transaction(function() use ($id) { |
|
| 389 | 389 | if (($object = $this->model->onlyTrashed()->find($id)) === null) { |
| 390 | 390 | return false; |
| 391 | 391 | } else { |
@@ -402,14 +402,14 @@ discard block |
||
| 402 | 402 | */ |
| 403 | 403 | public function bulkForceDelete($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->onlyTrashed()->whereIn('id', $ids); |
| 408 | 408 | $objects = $query->get(); |
| 409 | 409 | |
| 410 | 410 | $query->forceDelete(); |
| 411 | 411 | |
| 412 | - $objects->each(function ($object) { |
|
| 412 | + $objects->each(function($object) { |
|
| 413 | 413 | $this->afterDelete($object); |
| 414 | 414 | }); |
| 415 | 415 | } catch (\Exception $e) { |
@@ -427,7 +427,7 @@ discard block |
||
| 427 | 427 | */ |
| 428 | 428 | public function restore($id) |
| 429 | 429 | { |
| 430 | - return DB::transaction(function () use ($id) { |
|
| 430 | + return DB::transaction(function() use ($id) { |
|
| 431 | 431 | if (($object = $this->model->withTrashed()->find($id)) != null) { |
| 432 | 432 | $object->restore(); |
| 433 | 433 | $this->afterRestore($object); |
@@ -444,14 +444,14 @@ discard block |
||
| 444 | 444 | */ |
| 445 | 445 | public function bulkRestore($ids) |
| 446 | 446 | { |
| 447 | - return DB::transaction(function () use ($ids) { |
|
| 447 | + return DB::transaction(function() use ($ids) { |
|
| 448 | 448 | try { |
| 449 | 449 | $query = $this->model->withTrashed()->whereIn('id', $ids); |
| 450 | 450 | $objects = $query->get(); |
| 451 | 451 | |
| 452 | 452 | $query->restore(); |
| 453 | 453 | |
| 454 | - $objects->each(function ($object) { |
|
| 454 | + $objects->each(function($object) { |
|
| 455 | 455 | $this->afterRestore($object); |
| 456 | 456 | }); |
| 457 | 457 | } catch (\Exception $e) { |
@@ -726,7 +726,7 @@ discard block |
||
| 726 | 726 | { |
| 727 | 727 | if (isset($scopes[$scopeField])) { |
| 728 | 728 | $id = $scopes[$scopeField]; |
| 729 | - $query->whereHas($scopeRelation, function ($query) use ($id, $scopeField) { |
|
| 729 | + $query->whereHas($scopeRelation, function($query) use ($id, $scopeField) { |
|
| 730 | 730 | $query->where($scopeField, $id); |
| 731 | 731 | }); |
| 732 | 732 | unset($scopes[$scopeField]); |
@@ -757,7 +757,7 @@ discard block |
||
| 757 | 757 | { |
| 758 | 758 | |
| 759 | 759 | if (isset($scopes[$scopeField]) && is_string($scopes[$scopeField])) { |
| 760 | - $query->where(function ($query) use (&$scopes, $scopeField, $orFields) { |
|
| 760 | + $query->where(function($query) use (&$scopes, $scopeField, $orFields) { |
|
| 761 | 761 | foreach ($orFields as $field) { |
| 762 | 762 | $query->orWhere($field, $this->getLikeOperator(), '%' . $scopes[$scopeField] . '%'); |
| 763 | 763 | unset($scopes[$field]); |
@@ -833,11 +833,11 @@ discard block |
||
| 833 | 833 | |
| 834 | 834 | $uniqueTraits = array_unique(array_map('class_basename', $traits)); |
| 835 | 835 | |
| 836 | - $methods = array_map(function (string $trait) use ($method) { |
|
| 836 | + $methods = array_map(function(string $trait) use ($method) { |
|
| 837 | 837 | return $method . $trait; |
| 838 | 838 | }, $uniqueTraits); |
| 839 | 839 | |
| 840 | - return array_filter($methods, function (string $method) { |
|
| 840 | + return array_filter($methods, function(string $method) { |
|
| 841 | 841 | return method_exists(get_called_class(), $method); |
| 842 | 842 | }); |
| 843 | 843 | } |
@@ -79,7 +79,7 @@ |
||
| 79 | 79 | |
| 80 | 80 | if (!$item && config('translatable.use_property_fallback', false) |
| 81 | 81 | && config('translatable.fallback_locale') != config('app.locale')) { |
| 82 | - $item = (clone $query)->orWhere(function ($query) { |
|
| 82 | + $item = (clone $query)->orWhere(function($query) { |
|
| 83 | 83 | return $query->withActiveTranslations(config('translatable.fallback_locale')); |
| 84 | 84 | })->forFallbackLocaleSlug($slug)->first(); |
| 85 | 85 | |
@@ -31,78 +31,78 @@ |
||
| 31 | 31 | |
| 32 | 32 | public function boot() |
| 33 | 33 | { |
| 34 | - Gate::define('list', function ($user) { |
|
| 35 | - return $this->authorize($user, function ($user) { |
|
| 34 | + Gate::define('list', function($user) { |
|
| 35 | + return $this->authorize($user, function($user) { |
|
| 36 | 36 | return $this->userHasRole($user, [UserRole::VIEWONLY, UserRole::PUBLISHER, UserRole::ADMIN]); |
| 37 | 37 | }); |
| 38 | 38 | }); |
| 39 | 39 | |
| 40 | - Gate::define('edit', function ($user) { |
|
| 41 | - return $this->authorize($user, function ($user) { |
|
| 40 | + Gate::define('edit', function($user) { |
|
| 41 | + return $this->authorize($user, function($user) { |
|
| 42 | 42 | return $this->userHasRole($user, [UserRole::PUBLISHER, UserRole::ADMIN]); |
| 43 | 43 | }); |
| 44 | 44 | }); |
| 45 | 45 | |
| 46 | - Gate::define('reorder', function ($user) { |
|
| 47 | - return $this->authorize($user, function ($user) { |
|
| 46 | + Gate::define('reorder', function($user) { |
|
| 47 | + return $this->authorize($user, function($user) { |
|
| 48 | 48 | return $this->userHasRole($user, [UserRole::PUBLISHER, UserRole::ADMIN]); |
| 49 | 49 | }); |
| 50 | 50 | }); |
| 51 | 51 | |
| 52 | - Gate::define('publish', function ($user) { |
|
| 53 | - return $this->authorize($user, function ($user) { |
|
| 52 | + Gate::define('publish', function($user) { |
|
| 53 | + return $this->authorize($user, function($user) { |
|
| 54 | 54 | return $this->userHasRole($user, [UserRole::PUBLISHER, UserRole::ADMIN]); |
| 55 | 55 | }); |
| 56 | 56 | }); |
| 57 | 57 | |
| 58 | - Gate::define('feature', function ($user) { |
|
| 59 | - return $this->authorize($user, function ($user) { |
|
| 58 | + Gate::define('feature', function($user) { |
|
| 59 | + return $this->authorize($user, function($user) { |
|
| 60 | 60 | return $this->userHasRole($user, [UserRole::PUBLISHER, UserRole::ADMIN]); |
| 61 | 61 | }); |
| 62 | 62 | }); |
| 63 | 63 | |
| 64 | - Gate::define('delete', function ($user) { |
|
| 65 | - return $this->authorize($user, function ($user) { |
|
| 64 | + Gate::define('delete', function($user) { |
|
| 65 | + return $this->authorize($user, function($user) { |
|
| 66 | 66 | return $this->userHasRole($user, [UserRole::PUBLISHER, UserRole::ADMIN]); |
| 67 | 67 | }); |
| 68 | 68 | }); |
| 69 | 69 | |
| 70 | - Gate::define('duplicate', function ($user) { |
|
| 71 | - return $this->authorize($user, function ($user) { |
|
| 70 | + Gate::define('duplicate', function($user) { |
|
| 71 | + return $this->authorize($user, function($user) { |
|
| 72 | 72 | return $this->userHasRole($user, [UserRole::PUBLISHER, UserRole::ADMIN]); |
| 73 | 73 | }); |
| 74 | 74 | }); |
| 75 | 75 | |
| 76 | - Gate::define('upload', function ($user) { |
|
| 77 | - return $this->authorize($user, function ($user) { |
|
| 76 | + Gate::define('upload', function($user) { |
|
| 77 | + return $this->authorize($user, function($user) { |
|
| 78 | 78 | return $this->userHasRole($user, [UserRole::PUBLISHER, UserRole::ADMIN]); |
| 79 | 79 | }); |
| 80 | 80 | }); |
| 81 | 81 | |
| 82 | - Gate::define('manage-users', function ($user) { |
|
| 83 | - return $this->authorize($user, function ($user) { |
|
| 82 | + Gate::define('manage-users', function($user) { |
|
| 83 | + return $this->authorize($user, function($user) { |
|
| 84 | 84 | return $this->userHasRole($user, [UserRole::ADMIN]); |
| 85 | 85 | }); |
| 86 | 86 | }); |
| 87 | 87 | |
| 88 | 88 | // As an admin, I can edit users, except superadmins |
| 89 | 89 | // As a non-admin, I can edit myself only |
| 90 | - Gate::define('edit-user', function ($user, $editedUser = null) { |
|
| 91 | - return $this->authorize($user, function ($user) use ($editedUser) { |
|
| 90 | + Gate::define('edit-user', function($user, $editedUser = null) { |
|
| 91 | + return $this->authorize($user, function($user) use ($editedUser) { |
|
| 92 | 92 | $editedUserObject = User::find($editedUser); |
| 93 | 93 | return ($this->userHasRole($user, [UserRole::ADMIN]) || $user->id == $editedUser) |
| 94 | 94 | && ($editedUserObject ? $editedUserObject->role !== self::SUPERADMIN : true); |
| 95 | 95 | }); |
| 96 | 96 | }); |
| 97 | 97 | |
| 98 | - Gate::define('publish-user', function ($user) { |
|
| 99 | - return $this->authorize($user, function ($user) { |
|
| 98 | + Gate::define('publish-user', function($user) { |
|
| 99 | + return $this->authorize($user, function($user) { |
|
| 100 | 100 | $editedUserObject = User::find(request('id')); |
| 101 | 101 | return $this->userHasRole($user, [UserRole::ADMIN]) && ($editedUserObject ? $user->id !== $editedUserObject->id && $editedUserObject->role !== self::SUPERADMIN : false); |
| 102 | 102 | }); |
| 103 | 103 | }); |
| 104 | 104 | |
| 105 | - Gate::define('impersonate', function ($user) { |
|
| 105 | + Gate::define('impersonate', function($user) { |
|
| 106 | 106 | return $user->role === self::SUPERADMIN; |
| 107 | 107 | }); |
| 108 | 108 | |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | if ($object->$group) { |
| 39 | 39 | $decoded_fields = json_decode($object->$group, true) ?? []; |
| 40 | 40 | // In case that some field read the value through $item->$name |
| 41 | - foreach($decoded_fields as $field_name => $field_value) { |
|
| 41 | + foreach ($decoded_fields as $field_name => $field_value) { |
|
| 42 | 42 | $object->setAttribute($field_name, $field_value); |
| 43 | 43 | } |
| 44 | 44 | $fields = array_merge($fields, $decoded_fields); |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | |
| 51 | 51 | protected function handleFieldsGroups($fields) { |
| 52 | 52 | foreach ($this->fieldsGroups as $group => $groupFields) { |
| 53 | - $fields[$group] = Arr::where(Arr::only($fields, $groupFields), function ($value, $key) { |
|
| 53 | + $fields[$group] = Arr::where(Arr::only($fields, $groupFields), function($value, $key) { |
|
| 54 | 54 | return !empty($value); |
| 55 | 55 | }); |
| 56 | 56 | |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | |
| 43 | 43 | $featuredSources = $this->getFeaturedSources($request, $featuredSection, $filters['search'] ?? ''); |
| 44 | 44 | |
| 45 | - $contentTypes = Collection::make($featuredSources)->map(function ($source, $sourceKey) { |
|
| 45 | + $contentTypes = Collection::make($featuredSources)->map(function($source, $sourceKey) { |
|
| 46 | 46 | return [ |
| 47 | 47 | 'label' => $source['name'], |
| 48 | 48 | 'value' => $sourceKey, |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | |
| 55 | 55 | return [ |
| 56 | 56 | 'source' => [ |
| 57 | - 'content_type' => Arr::first($contentTypes, function ($contentTypeItem) use ($request) { |
|
| 57 | + 'content_type' => Arr::first($contentTypes, function($contentTypeItem) use ($request) { |
|
| 58 | 58 | return $contentTypeItem['value'] == $request->get('content_type'); |
| 59 | 59 | }), |
| 60 | 60 | 'items' => $source['items'], |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | private function getFeaturedItemsByBucket($featuredSection, $featuredSectionKey) |
| 101 | 101 | { |
| 102 | 102 | $bucketRouteConfig = $this->config->get('twill.bucketsRoutes') ?? [$featuredSectionKey => 'featured']; |
| 103 | - return Collection::make($featuredSection['buckets'])->map(function ($bucket, $bucketKey) use ($featuredSectionKey, $bucketRouteConfig) { |
|
| 103 | + return Collection::make($featuredSection['buckets'])->map(function($bucket, $bucketKey) use ($featuredSectionKey, $bucketRouteConfig) { |
|
| 104 | 104 | $routePrefix = $bucketRouteConfig[$featuredSectionKey]; |
| 105 | 105 | return [ |
| 106 | 106 | 'id' => $bucketKey, |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | 'acceptedSources' => Collection::make($bucket['bucketables'])->pluck('module'), |
| 110 | 110 | 'withToggleFeatured' => $bucket['with_starred_items'] ?? false, |
| 111 | 111 | 'toggleFeaturedLabels' => $bucket['starred_items_labels'] ?? [], |
| 112 | - 'children' => Feature::where('bucket_key', $bucketKey)->with('featured')->get()->map(function ($feature) use ($bucket) { |
|
| 112 | + 'children' => Feature::where('bucket_key', $bucketKey)->with('featured')->get()->map(function($feature) use ($bucket) { |
|
| 113 | 113 | if (($item = $feature->featured) != null) { |
| 114 | 114 | $forModuleRepository = collect($bucket['bucketables'])->where('module', $feature->featured_type)->first()['repository'] ?? null; |
| 115 | 115 | $repository = $this->getRepository($feature->featured_type, $forModuleRepository); |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | 'thumbnail' => $item->defaultCmsImage(['w' => 100, 'h' => 100]), |
| 129 | 129 | ] : []); |
| 130 | 130 | } |
| 131 | - })->reject(function ($item) { |
|
| 131 | + })->reject(function($item) { |
|
| 132 | 132 | return is_null($item); |
| 133 | 133 | })->values()->toArray(), |
| 134 | 134 | ]; |
@@ -146,8 +146,8 @@ discard block |
||
| 146 | 146 | $fetchedModules = []; |
| 147 | 147 | $featuredSources = []; |
| 148 | 148 | |
| 149 | - Collection::make($featuredSection['buckets'])->map(function ($bucket, $bucketKey) use (&$fetchedModules, $search, $request) { |
|
| 150 | - return Collection::make($bucket['bucketables'])->mapWithKeys(function ($bucketable) use (&$fetchedModules, $search, $request) { |
|
| 149 | + Collection::make($featuredSection['buckets'])->map(function($bucket, $bucketKey) use (&$fetchedModules, $search, $request) { |
|
| 150 | + return Collection::make($bucket['bucketables'])->mapWithKeys(function($bucketable) use (&$fetchedModules, $search, $request) { |
|
| 151 | 151 | |
| 152 | 152 | $module = $bucketable['module']; |
| 153 | 153 | $repository = $this->getRepository($module, $bucketable['repository'] ?? null); |
@@ -176,12 +176,12 @@ discard block |
||
| 176 | 176 | 'withImage' => $withImage, |
| 177 | 177 | ]]; |
| 178 | 178 | }); |
| 179 | - })->each(function ($bucketables, $bucket) use (&$featuredSources) { |
|
| 180 | - $bucketables->each(function ($bucketableData, $bucketable) use (&$featuredSources) { |
|
| 179 | + })->each(function($bucketables, $bucket) use (&$featuredSources) { |
|
| 180 | + $bucketables->each(function($bucketableData, $bucketable) use (&$featuredSources) { |
|
| 181 | 181 | $featuredSources[$bucketable]['name'] = $bucketableData['name']; |
| 182 | 182 | $featuredSources[$bucketable]['maxPage'] = $bucketableData['items']->lastPage(); |
| 183 | 183 | $featuredSources[$bucketable]['offset'] = $bucketableData['items']->perPage(); |
| 184 | - $featuredSources[$bucketable]['items'] = $bucketableData['items']->map(function ($item) use ($bucketableData, $bucketable) { |
|
| 184 | + $featuredSources[$bucketable]['items'] = $bucketableData['items']->map(function($item) use ($bucketableData, $bucketable) { |
|
| 185 | 185 | return [ |
| 186 | 186 | 'id' => $item->id, |
| 187 | 187 | 'name' => $item->titleInBucket ?? $item->title, |
@@ -210,8 +210,8 @@ discard block |
||
| 210 | 210 | */ |
| 211 | 211 | public function save(Request $request, DB $db) |
| 212 | 212 | { |
| 213 | - $db->transaction(function () use ($request) { |
|
| 214 | - Collection::make($request->get('buckets'))->each(function ($bucketables, $bucketKey) { |
|
| 213 | + $db->transaction(function() use ($request) { |
|
| 214 | + Collection::make($request->get('buckets'))->each(function($bucketables, $bucketKey) { |
|
| 215 | 215 | Feature::where('bucket_key', $bucketKey)->delete(); |
| 216 | 216 | foreach (($bucketables ?? []) as $position => $bucketable) { |
| 217 | 217 | Feature::create([ |
@@ -16,23 +16,23 @@ |
||
| 16 | 16 | */ |
| 17 | 17 | public function boot() |
| 18 | 18 | { |
| 19 | - Validator::extend('absolute_or_relative_url', function ($attribute, $value, $parameters, $validator) { |
|
| 19 | + Validator::extend('absolute_or_relative_url', function($attribute, $value, $parameters, $validator) { |
|
| 20 | 20 | return Str::startsWith($value, '/') || Validator::make([$attribute => $value], [$attribute => 'url'])->passes(); |
| 21 | 21 | }, 'The :attribute should be a valid url (absolute or relative)'); |
| 22 | 22 | |
| 23 | - Validator::extend('relative_or_secure_url', function ($attribute, $value, $parameters) { |
|
| 23 | + Validator::extend('relative_or_secure_url', function($attribute, $value, $parameters) { |
|
| 24 | 24 | return Str::startsWith($value, '/') || filter_var($value, FILTER_VALIDATE_URL) !== false && Str::startsWith($value, 'https'); |
| 25 | 25 | }, 'The :attribute should be a valid url (relative or https)'); |
| 26 | 26 | |
| 27 | - Validator::extend('web_color', function ($attribute, $value, $parameters, $validator) { |
|
| 27 | + Validator::extend('web_color', function($attribute, $value, $parameters, $validator) { |
|
| 28 | 28 | return preg_match('/^([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/i', $value); |
| 29 | 29 | }); |
| 30 | 30 | |
| 31 | - Validator::extend('phone_number', function ($attribute, $value, $parameters) { |
|
| 31 | + Validator::extend('phone_number', function($attribute, $value, $parameters) { |
|
| 32 | 32 | return preg_match("/^[+]?[0-9\-\ ]*$/", $value); |
| 33 | 33 | }); |
| 34 | 34 | |
| 35 | - Validator::extend('validBlocks', function ($attribute, $value, $parameters, $validator) { |
|
| 35 | + Validator::extend('validBlocks', function($attribute, $value, $parameters, $validator) { |
|
| 36 | 36 | $blockMessages = []; |
| 37 | 37 | |
| 38 | 38 | foreach ($value as $block) { |
@@ -65,14 +65,14 @@ discard block |
||
| 65 | 65 | { |
| 66 | 66 | return collect( |
| 67 | 67 | config('twill.block_editor.directories.source.icons') |
| 68 | - )->reduce(function (Collection $keep, $path) { |
|
| 68 | + )->reduce(function(Collection $keep, $path) { |
|
| 69 | 69 | if (!$this->files->exists($path)) { |
| 70 | 70 | $this->displayError("Directory not found: {$path}"); |
| 71 | 71 | |
| 72 | 72 | return $keep; |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - $files = collect($this->files->files($path))->map(function ( |
|
| 75 | + $files = collect($this->files->files($path))->map(function( |
|
| 76 | 76 | SplFileInfo $file |
| 77 | 77 | ) { |
| 78 | 78 | return [ |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | */ |
| 93 | 93 | public function handle() |
| 94 | 94 | { |
| 95 | - $icons = $this->getIconList()->filter(function ($icon) { |
|
| 95 | + $icons = $this->getIconList()->filter(function($icon) { |
|
| 96 | 96 | return $this->isAllowed($icon); |
| 97 | 97 | }); |
| 98 | 98 | |
@@ -51,10 +51,10 @@ discard block |
||
| 51 | 51 | |
| 52 | 52 | $this->getChildrenPreview($block['blocks'], $blocksCollection, $newBlock->id, $blockId, $blockRepository); |
| 53 | 53 | |
| 54 | - $renderedBlocks = $blocksCollection->where('parent_id', null)->map(function ($block) use ($blocksCollection, $viewFactory, $config) { |
|
| 54 | + $renderedBlocks = $blocksCollection->where('parent_id', null)->map(function($block) use ($blocksCollection, $viewFactory, $config) { |
|
| 55 | 55 | if ($config->get('twill.block_editor.block_preview_render_childs') ?? true) { |
| 56 | 56 | $childBlocks = $blocksCollection->where('parent_id', $block->id); |
| 57 | - $renderedChildViews = $childBlocks->map(function ($childBlock) use ($viewFactory, $config) { |
|
| 57 | + $renderedChildViews = $childBlocks->map(function($childBlock) use ($viewFactory, $config) { |
|
| 58 | 58 | $view = $this->getBlockView($childBlock->type, $config); |
| 59 | 59 | |
| 60 | 60 | return $viewFactory->exists($view) ? $viewFactory->make($view, [ |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | |
| 109 | 109 | protected function getChildrenPreview($blocks, $blocksCollection, $parentId, &$blockId, $blockRepository) |
| 110 | 110 | { |
| 111 | - $blocks->each(function ($childBlock) use (&$blockId, $parentId, $blocksCollection, $blockRepository) { |
|
| 111 | + $blocks->each(function($childBlock) use (&$blockId, $parentId, $blocksCollection, $blockRepository) { |
|
| 112 | 112 | $childBlock['parent_id'] = $parentId; |
| 113 | 113 | $blockId++; |
| 114 | 114 | $newChildBlock = $blockRepository->createForPreview($childBlock); |