We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | <!-- elFinder JS (REQUIRED) --> |
15 | 15 | <script src="<?= asset($dir.'/js/elfinder.min.js') ?>"></script> |
16 | 16 | |
17 | - <?php if($locale){ ?> |
|
17 | + <?php if ($locale) { ?> |
|
18 | 18 | <!-- elFinder translation (OPTIONAL) --> |
19 | 19 | <script src="<?= asset($dir."/js/i18n/elfinder.$locale.js") ?>"></script> |
20 | 20 | <?php } ?> |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | $().ready(function() { |
27 | 27 | $('#elfinder').elfinder({ |
28 | 28 | // set your elFinder options here |
29 | - <?php if($locale){ ?> |
|
29 | + <?php if ($locale) { ?> |
|
30 | 30 | lang: '<?= $locale ?>', // locale |
31 | 31 | <?php } ?> |
32 | 32 | customData: { |
@@ -68,10 +68,10 @@ |
||
68 | 68 | <ol class="sortable mt-0"> |
69 | 69 | <?php |
70 | 70 | $all_entries = collect($entries->all())->sortBy('lft')->keyBy($crud->getModel()->getKeyName()); |
71 | - $root_entries = $all_entries->filter(function ($item) { |
|
71 | + $root_entries = $all_entries->filter(function($item) { |
|
72 | 72 | return $item->parent_id == 0; |
73 | 73 | }); |
74 | - foreach ($root_entries as $key => $entry){ |
|
74 | + foreach ($root_entries as $key => $entry) { |
|
75 | 75 | $root_entries[$key] = tree_element($entry, $key, $all_entries, $crud); |
76 | 76 | } |
77 | 77 | ?> |
@@ -7,14 +7,14 @@ |
||
7 | 7 | |
8 | 8 | <div class="form-group backpack-filter mb-0"> |
9 | 9 | <?php |
10 | - $from = ''; |
|
11 | - $to = ''; |
|
12 | - if($filter->currentValue) { |
|
13 | - $range = (array)json_decode($filter->currentValue); |
|
14 | - $from = $range['from']; |
|
15 | - $to = $range['to']; |
|
16 | - } |
|
17 | - ?> |
|
10 | + $from = ''; |
|
11 | + $to = ''; |
|
12 | + if($filter->currentValue) { |
|
13 | + $range = (array)json_decode($filter->currentValue); |
|
14 | + $from = $range['from']; |
|
15 | + $to = $range['to']; |
|
16 | + } |
|
17 | + ?> |
|
18 | 18 | <div class="input-group"> |
19 | 19 | <input class="form-control pull-right from" |
20 | 20 | type="number" |