@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace Thinktomorrow\Chief\Fields\Types; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace Thinktomorrow\Chief\Fields\Types; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace Thinktomorrow\Chief\Fields\Types; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace Thinktomorrow\Chief\Fields\Types; |
5 | 5 |
@@ -64,7 +64,7 @@ |
||
64 | 64 | |
65 | 65 | public function __toString() |
66 | 66 | { |
67 | - return (string) $this->get('key'); |
|
67 | + return (string)$this->get('key'); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | $this->addModelToCollection($i, $child); |
79 | 79 | } |
80 | 80 | |
81 | - return $this->sets->values()->map(function (ViewableContract $child) { |
|
81 | + return $this->sets->values()->map(function(ViewableContract $child) { |
|
82 | 82 | return ($this->withSnippets && method_exists($child, 'withSnippets')) |
83 | 83 | ? $child->withSnippets()->setViewParent($this->parent)->renderView() |
84 | 84 | : $child->setViewParent($this->parent)->renderView(); |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | { |
96 | 96 | // Only published pages you fool! |
97 | 97 | // TODO: check for assistant instead of method existence |
98 | - if (method_exists($model, 'isPublished') && ! $model->isPublished()) { |
|
98 | + if (method_exists($model, 'isPublished') && !$model->isPublished()) { |
|
99 | 99 | return; |
100 | 100 | } |
101 | 101 |
@@ -87,11 +87,11 @@ |
||
87 | 87 | return parent::fields()->add( |
88 | 88 | $this->pageBuilderField(), |
89 | 89 | InputField::make('title')->translatable($this->model->availableLocales()) |
90 | - ->validation('required-fallback-locale|max:200', [], [ |
|
91 | - 'trans.'.config('app.fallback_locale', 'nl').'.title' => 'title', |
|
92 | - ]) |
|
93 | - ->label('De titel van je '.$this->model->labelSingular ?? 'pagina') |
|
94 | - ->description('Dit is de titel die zal worden getoond in de overzichten en modules.'), |
|
90 | + ->validation('required-fallback-locale|max:200', [], [ |
|
91 | + 'trans.'.config('app.fallback_locale', 'nl').'.title' => 'title', |
|
92 | + ]) |
|
93 | + ->label('De titel van je '.$this->model->labelSingular ?? 'pagina') |
|
94 | + ->description('Dit is de titel die zal worden getoond in de overzichten en modules.'), |
|
95 | 95 | InputField::make('seo_title') |
96 | 96 | ->translatable($this->model->availableLocales()) |
97 | 97 | ->label('Zoekmachine titel'), |
@@ -62,15 +62,15 @@ discard block |
||
62 | 62 | { |
63 | 63 | $permission = 'update-page'; |
64 | 64 | |
65 | - if (in_array($verb, ['index','show'])) { |
|
65 | + if (in_array($verb, ['index', 'show'])) { |
|
66 | 66 | $permission = 'view-page'; |
67 | - } elseif (in_array($verb, ['create','store'])) { |
|
67 | + } elseif (in_array($verb, ['create', 'store'])) { |
|
68 | 68 | $permission = 'create-page'; |
69 | 69 | } elseif (in_array($verb, ['delete'])) { |
70 | 70 | $permission = 'delete-page'; |
71 | 71 | } |
72 | 72 | |
73 | - if (! auth()->guard('chief')->user()->hasPermissionTo($permission)) { |
|
73 | + if (!auth()->guard('chief')->user()->hasPermissionTo($permission)) { |
|
74 | 74 | throw NotAllowedManagerRoute::notAllowedPermission($permission, $this); |
75 | 75 | } |
76 | 76 | } |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | public function fieldArrangement($key = null): FieldArrangement |
133 | 133 | { |
134 | 134 | if ($key == 'create') { |
135 | - return new FieldArrangement($this->fieldsWithAssistantFields()->filterBy(function ($field) { |
|
135 | + return new FieldArrangement($this->fieldsWithAssistantFields()->filterBy(function($field) { |
|
136 | 136 | return in_array($field->key, ['title']); |
137 | 137 | })); |
138 | 138 | } |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | new FieldsTab('seo', ['seo_title', 'seo_description', 'seo_keywords', 'seo_image']), |
147 | 147 | ]; |
148 | 148 | |
149 | - if (! Module::available()->values()->isEmpty()) { |
|
149 | + if (!Module::available()->values()->isEmpty()) { |
|
150 | 150 | array_splice($tabs, 1, 0, [new FieldsTab('modules', [], 'chief::back.pages._partials.modules')]); |
151 | 151 | } |
152 | 152 | |
@@ -159,8 +159,8 @@ discard block |
||
159 | 159 | if ($this->model->id) { |
160 | 160 | return parent::details() |
161 | 161 | ->set('title', ucfirst($this->model->title)) |
162 | - ->set('intro', 'Aangepast ' . $this->model->updated_at->format('d/m/Y H:i')) |
|
163 | - ->set('context', '<span class="inline-xs stack-s">' . $this->assistant('publish')->publicationStatusAsLabel() . '</span>'); |
|
162 | + ->set('intro', 'Aangepast '.$this->model->updated_at->format('d/m/Y H:i')) |
|
163 | + ->set('context', '<span class="inline-xs stack-s">'.$this->assistant('publish')->publicationStatusAsLabel().'</span>'); |
|
164 | 164 | } |
165 | 165 | |
166 | 166 | return parent::details(); |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | public function saveFields(Request $request) |
170 | 170 | { |
171 | 171 | // Store the morph_key upon creation |
172 | - if ($this->model instanceof MorphableContract && ! $this->model->morph_key) { |
|
172 | + if ($this->model instanceof MorphableContract && !$this->model->morph_key) { |
|
173 | 173 | $this->model->morph_key = $this->model->morphKey(); |
174 | 174 | } |
175 | 175 | |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | if (is_array_empty($translation)) { |
215 | 215 | |
216 | 216 | // Nullify all values |
217 | - $trans[$locale] = array_map(function ($value) { |
|
217 | + $trans[$locale] = array_map(function($value) { |
|
218 | 218 | return null; |
219 | 219 | }, $translation); |
220 | 220 | continue; |
@@ -112,12 +112,12 @@ |
||
112 | 112 | $builder->where('locale', $locale); |
113 | 113 | } |
114 | 114 | |
115 | - if (! $includeRedirects) { |
|
115 | + if (!$includeRedirects) { |
|
116 | 116 | $builder->whereNull('redirect_id'); |
117 | 117 | } |
118 | 118 | |
119 | 119 | if ($ignoredModel) { |
120 | - $builder->whereNotIn('id', function ($query) use ($ignoredModel) { |
|
120 | + $builder->whereNotIn('id', function($query) use ($ignoredModel) { |
|
121 | 121 | $query->select('id') |
122 | 122 | ->from('chief_urls') |
123 | 123 | ->where('model_type', '=', $ignoredModel->getMorphClass()) |
@@ -65,8 +65,8 @@ discard block |
||
65 | 65 | public static function getByModel(Model $model) |
66 | 66 | { |
67 | 67 | return static::where('model_type', $model->getMorphClass()) |
68 | - ->where('model_id', $model->id) |
|
69 | - ->get(); |
|
68 | + ->where('model_id', $model->id) |
|
69 | + ->get(); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | public static function findRecentRedirect(Model $model, string $locale): ?self |
@@ -134,9 +134,9 @@ discard block |
||
134 | 134 | if ($ignoredModel) { |
135 | 135 | $builder->whereNotIn('id', function ($query) use ($ignoredModel) { |
136 | 136 | $query->select('id') |
137 | - ->from('chief_urls') |
|
138 | - ->where('model_type', '=', $ignoredModel->getMorphClass()) |
|
139 | - ->where('model_id', '=', $ignoredModel->id); |
|
137 | + ->from('chief_urls') |
|
138 | + ->where('model_type', '=', $ignoredModel->getMorphClass()) |
|
139 | + ->where('model_id', '=', $ignoredModel->id); |
|
140 | 140 | }); |
141 | 141 | } |
142 | 142 |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | |
37 | 37 | // If no view has been created for this model, we try once again to fetch the content value if any. This will silently fail |
38 | 38 | // if no content value is present. We consider the 'content' attribute to be a default for our copy. |
39 | - return isset($this->content) ? (string) $this->content : ''; |
|
39 | + return isset($this->content) ? (string)$this->content : ''; |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | public function setViewParent(ActsAsParent $parent): ViewableContract |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | } |
65 | 65 | |
66 | 66 | if (config('thinktomorrow.chief.strict')) { |
67 | - throw new NotFoundViewKey('Missing view key. Please add a [viewKey] property to ' . get_class($this)); |
|
67 | + throw new NotFoundViewKey('Missing view key. Please add a [viewKey] property to '.get_class($this)); |
|
68 | 68 | }; |
69 | 69 | |
70 | 70 | return ''; |