Completed
Push — master ( bfa761...b42c06 )
by Vitaliy
22:23
created
resources/views/default/components/filters/checkboxes.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 /** @var Nayjest\Grids\Components\SelectFilter $component */
3 3
 $value = $component->getValue();
4 4
 if (!is_array($value)) $value = [];
5
-$id = uniqid() . mt_rand();
5
+$id = uniqid().mt_rand();
6 6
 ?>
7 7
 <div class="btn-group">
8 8
     <button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown">
@@ -25,11 +25,11 @@  discard block
 block discarded – undo
25 25
                 </label>
26 26
             </div>
27 27
         </li>
28
-        <?php foreach($component->getVariants() as $val => $label): ?>
29
-            <?php if(is_array($label)):?>
28
+        <?php foreach ($component->getVariants() as $val => $label): ?>
29
+            <?php if (is_array($label)):?>
30 30
                 <?php
31 31
                 $class = '';
32
-                if(array_intersect(array_keys($label['values']), array_keys($value))) {
32
+                if (array_intersect(array_keys($label['values']), array_keys($value))) {
33 33
                     $class = ' in';
34 34
                 }
35 35
                 ?>
@@ -51,12 +51,12 @@  discard block
 block discarded – undo
51 51
                                 </label>
52 52
                             </div>
53 53
                         <?php endif ?>
54
-                        <?php foreach($label['values'] as $option_val=>$option_label):?>
54
+                        <?php foreach ($label['values'] as $option_val=>$option_label):?>
55 55
                             <div>
56 56
                                 <label>
57 57
                                     <input
58 58
                                         type="checkbox"
59
-                                        <?php if(!empty($value[$option_val])) echo "checked='checked'" ?>
59
+                                        <?php if (!empty($value[$option_val])) echo "checked='checked'" ?>
60 60
                                         name="<?= $component->getInputName() ?>[<?= $option_val ?>]"
61 61
                                     >
62 62
                                     <span><?= $option_label ?></span>
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
                     <label>
71 71
                         <input
72 72
                             type="checkbox"
73
-                            <?php if(!empty($value[$val])) echo "checked='checked'" ?>
73
+                            <?php if (!empty($value[$val])) echo "checked='checked'" ?>
74 74
                             name="<?= $component->getInputName() ?>[<?= $val ?>]"
75 75
                         >
76 76
                         <span><?= $label ?></span>
Please login to merge, or discard this patch.