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 | } |
@@ -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) { |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | */ |
32 | 32 | public function hasAccess($permission) |
33 | 33 | { |
34 | - if (! in_array($permission, $this->access)) { |
|
34 | + if (!in_array($permission, $this->access)) { |
|
35 | 35 | return false; |
36 | 36 | } |
37 | 37 | |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | public function hasAccessToAll($permission_array) |
67 | 67 | { |
68 | 68 | foreach ($permission_array as $key => $permission) { |
69 | - if (! in_array($permission, $this->access)) { |
|
69 | + if (!in_array($permission, $this->access)) { |
|
70 | 70 | return false; |
71 | 71 | } |
72 | 72 | } |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | */ |
84 | 84 | public function hasAccessOrFail($permission) |
85 | 85 | { |
86 | - if (! in_array($permission, $this->access)) { |
|
86 | + if (!in_array($permission, $this->access)) { |
|
87 | 87 | abort(403, trans('backpack::crud.unauthorized_access')); |
88 | 88 | } |
89 | 89 | } |
@@ -29,20 +29,20 @@ |
||
29 | 29 | if (isset($fields[$k]['fake']) && $fields[$k]['fake'] == true) { |
30 | 30 | // add it to the request in its appropriate variable - the one defined, if defined |
31 | 31 | if (isset($fields[$k]['store_in'])) { |
32 | - if (! in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) { |
|
32 | + if (!in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) { |
|
33 | 33 | array_push($fake_field_columns_to_encode, $fields[$k]['store_in']); |
34 | 34 | } |
35 | 35 | } else { |
36 | 36 | //otherwise in the one defined in the $crud variable |
37 | 37 | |
38 | - if (! in_array('extras', $fake_field_columns_to_encode, true)) { |
|
38 | + if (!in_array('extras', $fake_field_columns_to_encode, true)) { |
|
39 | 39 | array_push($fake_field_columns_to_encode, 'extras'); |
40 | 40 | } |
41 | 41 | } |
42 | 42 | } |
43 | 43 | } |
44 | 44 | |
45 | - if (! count($fake_field_columns_to_encode)) { |
|
45 | + if (!count($fake_field_columns_to_encode)) { |
|
46 | 46 | return ['extras']; |
47 | 47 | } |
48 | 48 |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | // remove the fake field |
42 | 42 | array_pull($request, $fields[$k]['name']); |
43 | 43 | |
44 | - if (! in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) { |
|
44 | + if (!in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) { |
|
45 | 45 | array_push($fake_field_columns_to_encode, $fields[$k]['store_in']); |
46 | 46 | } |
47 | 47 | } else { |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | // remove the fake field |
53 | 53 | array_pull($request, $fields[$k]['name']); |
54 | 54 | |
55 | - if (! in_array('extras', $fake_field_columns_to_encode, true)) { |
|
55 | + if (!in_array('extras', $fake_field_columns_to_encode, true)) { |
|
56 | 56 | array_push($fake_field_columns_to_encode, 'extras'); |
57 | 57 | } |
58 | 58 | } |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | { |
17 | 17 | $this->getDbColumnTypes(); |
18 | 18 | |
19 | - array_map(function ($field) { |
|
19 | + array_map(function($field) { |
|
20 | 20 | // $this->labels[$field] = $this->makeLabel($field); |
21 | 21 | |
22 | 22 | $new_field = [ |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | $this->create_fields[$field] = $new_field; |
31 | 31 | $this->update_fields[$field] = $new_field; |
32 | 32 | |
33 | - if (! in_array($field, $this->model->getHidden())) { |
|
33 | + if (!in_array($field, $this->model->getHidden())) { |
|
34 | 34 | $this->columns[$field] = [ |
35 | 35 | 'name' => $field, |
36 | 36 | 'label' => ucfirst($field), |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | */ |
64 | 64 | public function getFieldTypeFromDbColumnType($field) |
65 | 65 | { |
66 | - if (! array_key_exists($field, $this->db_column_types)) { |
|
66 | + if (!array_key_exists($field, $this->db_column_types)) { |
|
67 | 67 | return 'text'; |
68 | 68 | } |
69 | 69 | |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | $columns = \Schema::getColumnListing($this->model->getTable()); |
145 | 145 | $fillable = $this->model->getFillable(); |
146 | 146 | |
147 | - if (! empty($fillable)) { |
|
147 | + if (!empty($fillable)) { |
|
148 | 148 | $columns = array_intersect($columns, $fillable); |
149 | 149 | } |
150 | 150 |
@@ -4,7 +4,7 @@ |
||
4 | 4 | <?php |
5 | 5 | // if the column has been cast to Carbon or Date (using attribute casting) |
6 | 6 | // get the value as a date string |
7 | - if (isset($field['value']) && ( $field['value'] instanceof \Carbon\Carbon || $field['value'] instanceof \Jenssegers\Date\Date )) |
|
7 | + if (isset($field['value']) && ($field['value'] instanceof \Carbon\Carbon || $field['value'] instanceof \Jenssegers\Date\Date)) |
|
8 | 8 | { |
9 | 9 | $field['value'] = $field['value']->toDateString(); |
10 | 10 | } |