We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | <!-- elFinder JS (REQUIRED) --> |
18 | 18 | <script src="<?= asset($dir.'/js/elfinder.min.js') ?>"></script> |
19 | 19 | |
20 | - <?php if($locale){ ?> |
|
20 | + <?php if ($locale) { ?> |
|
21 | 21 | <!-- elFinder translation (OPTIONAL) --> |
22 | 22 | <script src="<?= asset($dir."/js/i18n/elfinder.$locale.js") ?>"></script> |
23 | 23 | <?php } ?> |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | $().ready(function() { |
41 | 41 | var elf = $('#elfinder').elfinder({ |
42 | 42 | // set your elFinder options here |
43 | - <?php if($locale){ ?> |
|
43 | + <?php if ($locale) { ?> |
|
44 | 44 | lang: '<?= $locale ?>', // locale |
45 | 45 | <?php } ?> |
46 | 46 | customData: { |
@@ -15,15 +15,15 @@ discard block |
||
15 | 15 | $dependencyArray = []; |
16 | 16 | |
17 | 17 | //convert dependency array to simple matrix ( prymary id as key and array with secondaries id ) |
18 | - foreach($dependencies as $primary){ |
|
18 | + foreach ($dependencies as $primary) { |
|
19 | 19 | $dependencyArray[$primary->id] = []; |
20 | - foreach($primary->{$primary_dependency['entity_secondary']} as $secondary){ |
|
20 | + foreach ($primary->{$primary_dependency['entity_secondary']} as $secondary) { |
|
21 | 21 | $dependencyArray[$primary->id][] = $secondary->id; |
22 | 22 | } |
23 | 23 | } |
24 | 24 | |
25 | 25 | //for update form, get initial state of the entity |
26 | - if( isset($id) && $id ){ |
|
26 | + if (isset($id) && $id) { |
|
27 | 27 | |
28 | 28 | //get entity with relations for primary dependency |
29 | 29 | $entity_dependencies = $entity_model->with($primary_dependency['entity']) |
@@ -39,15 +39,15 @@ discard block |
||
39 | 39 | $secondary_ids = []; |
40 | 40 | |
41 | 41 | //create secondary dependency from primary relation, used to check what chekbox must be check from second checklist |
42 | - if( old($primary_dependency['name']) ) { |
|
43 | - foreach( old($primary_dependency['name']) as $primary_item ){ |
|
44 | - foreach($dependencyArray[$primary_item] as $second_item ){ |
|
42 | + if (old($primary_dependency['name'])) { |
|
43 | + foreach (old($primary_dependency['name']) as $primary_item) { |
|
44 | + foreach ($dependencyArray[$primary_item] as $second_item) { |
|
45 | 45 | $secondary_ids[$second_item] = $second_item; |
46 | 46 | } |
47 | 47 | } |
48 | - }else{ //create dependecies from relation if not from validate error |
|
49 | - foreach( $primary_array as $primary_item ){ |
|
50 | - foreach($primary_item[$secondary_dependency['entity']] as $second_item ){ |
|
48 | + } else { //create dependecies from relation if not from validate error |
|
49 | + foreach ($primary_array as $primary_item) { |
|
50 | + foreach ($primary_item[$secondary_dependency['entity']] as $second_item) { |
|
51 | 51 | $secondary_ids[$second_item['id']] = $second_item['id']; |
52 | 52 | } |
53 | 53 | } |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <!-- select2 --> |
2 | 2 | <div class="form-group"> |
3 | 3 | <label>{{ $field['label'] }}</label> |
4 | - <?php $entity_model = $crud->getModel();?> |
|
4 | + <?php $entity_model = $crud->getModel(); ?> |
|
5 | 5 | |
6 | 6 | <div class="row"> |
7 | 7 | @foreach ($field['model']::all() as $connected_entity_entry) |
@@ -66,7 +66,7 @@ |
||
66 | 66 | |
67 | 67 | private function registerCRUD() |
68 | 68 | { |
69 | - $this->app->bind('CRUD', function ($app) { |
|
69 | + $this->app->bind('CRUD', function($app) { |
|
70 | 70 | return new CRUD($app); |
71 | 71 | }); |
72 | 72 | } |
@@ -69,7 +69,7 @@ |
||
69 | 69 | * |
70 | 70 | * @param array $columns - the database columns that contain the JSONs |
71 | 71 | * |
72 | - * @return Model |
|
72 | + * @return CrudTrait |
|
73 | 73 | */ |
74 | 74 | public function withFakes($columns = []) |
75 | 75 | { |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | foreach ($columns as $key => $column) { |
51 | 51 | $column_contents = $this->{$column}; |
52 | 52 | |
53 | - if (! is_object($this->{$column})) { |
|
53 | + if (!is_object($this->{$column})) { |
|
54 | 54 | $column_contents = json_decode($this->{$column}); |
55 | 55 | } |
56 | 56 | |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | { |
74 | 74 | $model = '\\'.get_class($this); |
75 | 75 | |
76 | - if (! count($columns)) { |
|
76 | + if (!count($columns)) { |
|
77 | 77 | $columns = (property_exists($model, 'fakeColumns')) ? $this->fakeColumns : ['extras']; |
78 | 78 | } |
79 | 79 | |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | $attribute_value = (array) $this->{$attribute_name}; |
164 | 164 | foreach ($files_to_clear as $key => $filename) { |
165 | 165 | \Storage::disk($disk)->delete($filename); |
166 | - $attribute_value = array_where($attribute_value, function ($value, $key) use ($filename) { |
|
166 | + $attribute_value = array_where($attribute_value, function($value, $key) use ($filename) { |
|
167 | 167 | return $value != $filename; |
168 | 168 | }); |
169 | 169 | } |
@@ -207,17 +207,17 @@ discard block |
||
207 | 207 | */ |
208 | 208 | public function uploadImageToDisk($value, $attribute_name, $disk, $destination_path, $variations = null) |
209 | 209 | { |
210 | - if (! $variations || ! is_array($variations)) { |
|
210 | + if (!$variations || !is_array($variations)) { |
|
211 | 211 | $variations = ['original' => null, 'thumb' => [150, 150]]; |
212 | 212 | } |
213 | 213 | |
214 | 214 | //Needed for the original image |
215 | - if (! array_key_exists('original', $variations)) { |
|
215 | + if (!array_key_exists('original', $variations)) { |
|
216 | 216 | $variations['original'] = null; |
217 | 217 | } |
218 | 218 | |
219 | 219 | //Needed for admin thumbnails |
220 | - if (! array_key_exists('thumb', $variations)) { |
|
220 | + if (!array_key_exists('thumb', $variations)) { |
|
221 | 221 | $variations['thumb'] = [150, 150]; |
222 | 222 | } |
223 | 223 | |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | } |
237 | 237 | |
238 | 238 | // if a new file is uploaded, delete the file from the disk |
239 | - if ( ($request->hasFile($attribute_name) || starts_with($value, 'data:image')) && $this->{$attribute_name} ) { |
|
239 | + if (($request->hasFile($attribute_name) || starts_with($value, 'data:image')) && $this->{$attribute_name} ) { |
|
240 | 240 | foreach ($variations as $variant => $dimensions) { |
241 | 241 | $variant_name = str_replace('-original', '-'.$variant, $this->{$attribute_name}); |
242 | 242 | \Storage::disk($disk)->delete($variant_name); |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | $height = $dimensions[1]; |
279 | 279 | |
280 | 280 | if ($img->width() > $width || $img->height() > $height) { |
281 | - $img->resize($width, $height, function ($constraint) { |
|
281 | + $img->resize($width, $height, function($constraint) { |
|
282 | 282 | $constraint->aspectRatio(); |
283 | 283 | }) |
284 | 284 | ->save($disk_root.'/'.$variant_file); |
@@ -300,18 +300,18 @@ discard block |
||
300 | 300 | // 3. Save the complete path to the database |
301 | 301 | $this->attributes[$attribute_name] = $image_variations['original']; |
302 | 302 | |
303 | - } elseif( starts_with($value, 'data:image') ) { |
|
303 | + } elseif (starts_with($value, 'data:image')) { |
|
304 | 304 | |
305 | 305 | $img = \Image::make($value); |
306 | 306 | $new_file_name = md5($value.time()); |
307 | 307 | |
308 | - if( !\Illuminate\Support\Facades\File::exists($destination_path) ){ |
|
308 | + if (!\Illuminate\Support\Facades\File::exists($destination_path)) { |
|
309 | 309 | \Illuminate\Support\Facades\File::makeDirectory($destination_path, 0775, true); |
310 | 310 | } |
311 | 311 | |
312 | 312 | foreach ($variations as $variant => $dimensions) { |
313 | 313 | |
314 | - switch( $img->mime() ) { |
|
314 | + switch ($img->mime()) { |
|
315 | 315 | case 'image/bmp': |
316 | 316 | case 'image/ief': |
317 | 317 | case 'image/jpeg': |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | $height = $dimensions[1]; |
341 | 341 | |
342 | 342 | if ($img->width() > $width || $img->height() > $height) { |
343 | - $img->resize($width, $height, function ($constraint) { |
|
343 | + $img->resize($width, $height, function($constraint) { |
|
344 | 344 | $constraint->aspectRatio(); |
345 | 345 | }) |
346 | 346 | ->save($disk_root.'/'.$variant_file); |
@@ -371,7 +371,7 @@ discard block |
||
371 | 371 | { |
372 | 372 | $image = $this->attributes['image']; |
373 | 373 | $url = null; |
374 | - if (! empty($image)) { |
|
374 | + if (!empty($image)) { |
|
375 | 375 | |
376 | 376 | $image_variant = str_replace('-original', '-'.$variant, $image); |
377 | 377 | |
@@ -387,13 +387,13 @@ discard block |
||
387 | 387 | $public_path = $disk_root; |
388 | 388 | } |
389 | 389 | |
390 | - if( \Storage::disk($disk)->exists($image_variant) ){ |
|
390 | + if (\Storage::disk($disk)->exists($image_variant)) { |
|
391 | 391 | $url = asset($public_path.'/'.$image_variant); |
392 | 392 | } else { |
393 | 393 | $url = asset($public_path.'/'.trim($image, '/')); |
394 | 394 | } |
395 | 395 | } else { |
396 | - if( \Storage::exists($image_variant) ){ |
|
396 | + if (\Storage::exists($image_variant)) { |
|
397 | 397 | $url = \Storage::url(trim($image_variant, '/')); |
398 | 398 | } else { |
399 | 399 | $url = url($image); |
@@ -26,7 +26,7 @@ |
||
26 | 26 | <!-- Include jQuery, jQuery UI, elFinder (REQUIRED) --> |
27 | 27 | |
28 | 28 | <?php |
29 | - $mimeTypes = implode(',', array_map(function ($t) { |
|
29 | + $mimeTypes = implode(',', array_map(function($t) { |
|
30 | 30 | return "'".$t."'"; |
31 | 31 | }, explode(',', $type))); |
32 | 32 | ?> |
@@ -43,7 +43,7 @@ |
||
43 | 43 | |
44 | 44 | foreach ($fields as $k => $field) { |
45 | 45 | // set the value |
46 | - if (! isset($fields[$k]['value'])) { |
|
46 | + if (!isset($fields[$k]['value'])) { |
|
47 | 47 | if (isset($field['subfields'])) { |
48 | 48 | $fields[$k]['value'] = []; |
49 | 49 | foreach ($field['subfields'] as $key => $subfield) { |
@@ -27,12 +27,12 @@ discard block |
||
27 | 27 | } |
28 | 28 | |
29 | 29 | // if the label is missing, we should set it |
30 | - if (! isset($complete_field_array['label'])) { |
|
30 | + if (!isset($complete_field_array['label'])) { |
|
31 | 31 | $complete_field_array['label'] = ucfirst($complete_field_array['name']); |
32 | 32 | } |
33 | 33 | |
34 | 34 | // if the field type is missing, we should set it |
35 | - if (! isset($complete_field_array['type'])) { |
|
35 | + if (!isset($complete_field_array['type'])) { |
|
36 | 36 | $complete_field_array['type'] = $this->getFieldTypeFromDbColumnType($complete_field_array['name']); |
37 | 37 | } |
38 | 38 | |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | */ |
95 | 95 | public function removeFields($array_of_names, $form = 'both') |
96 | 96 | { |
97 | - if (! empty($array_of_names)) { |
|
97 | + if (!empty($array_of_names)) { |
|
98 | 98 | foreach ($array_of_names as $name) { |
99 | 99 | $this->removeField($name, $form); |
100 | 100 | } |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | public function addColumn($column) |
56 | 56 | { |
57 | 57 | // if a string was passed, not an array, change it to an array |
58 | - if (! is_array($column)) { |
|
58 | + if (!is_array($column)) { |
|
59 | 59 | $column = ['name' => $column]; |
60 | 60 | } |
61 | 61 | |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | */ |
107 | 107 | public function addDefaultLabel($array) |
108 | 108 | { |
109 | - if (! array_key_exists('label', (array) $array) && array_key_exists('name', (array) $array)) { |
|
109 | + if (!array_key_exists('label', (array) $array) && array_key_exists('name', (array) $array)) { |
|
110 | 110 | $array = array_merge(['label' => ucfirst($this->makeLabel($array['name']))], $array); |
111 | 111 | |
112 | 112 | return $array; |
@@ -137,8 +137,8 @@ discard block |
||
137 | 137 | |
138 | 138 | public function remove($entity, $fields) |
139 | 139 | { |
140 | - return array_values(array_filter($this->{$entity}, function ($field) use ($fields) { |
|
141 | - return ! in_array($field['name'], (array) $fields); |
|
140 | + return array_values(array_filter($this->{$entity}, function($field) use ($fields) { |
|
141 | + return !in_array($field['name'], (array) $fields); |
|
142 | 142 | })); |
143 | 143 | } |
144 | 144 |