Completed
Push — master ( 9dcc44...c2d14e )
by Laurent
02:18
created
listFact.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,8 +61,8 @@
 block discarded – undo
61 61
 $form = new Form($db);
62 62
 print '<!-- debut cartouche rapport -->
63 63
 	<div class="tabs">
64
-	    <a  id="'.($viewSelection == 1 ? 'active' : '').'" class="tab" href="listFact.php?view=1">Facturation</a>
65
-	    <a  id="'.($viewSelection == 2 ? 'active' : '').'" class="tab" href="listFact.php?view=2">AVIABEL</a>
64
+	    <a  id="'.($viewSelection == 1 ? 'active' : '') . '" class="tab" href="listFact.php?view=1">Facturation</a>
65
+	    <a  id="'.($viewSelection == 2 ? 'active' : '') . '" class="tab" href="listFact.php?view=2">AVIABEL</a>
66 66
 	</div>';
67 67
 print '<div class="tabBar">';
68 68
 print "<form name='listFact' action=\"listFact.php\" method=\"get\">\n";
Please login to merge, or discard this patch.
generateExpenseNote.php 2 patches
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -81,9 +81,9 @@  discard block
 block discarded – undo
81 81
 
82 82
         $missions = bbcKilometersByQuartil($year);
83 83
 
84
-        foreach($missions as $currentMissionUserId => $currentMission){
84
+        foreach ($missions as $currentMissionUserId => $currentMission) {
85 85
 
86
-            if($currentMission["quartil"][$quarter]["km"] == 0 && $currentMission["quartil"][$quarter]["flight"] == 0){
86
+            if ($currentMission["quartil"][$quarter]["km"] == 0 && $currentMission["quartil"][$quarter]["flight"] == 0) {
87 87
                 continue;
88 88
             }
89 89
 
@@ -97,18 +97,18 @@  discard block
 block discarded – undo
97 97
             $object->fk_statut = 1;
98 98
             $object->fk_user_validator = GETPOST("fk_user_validator", 'int');
99 99
             $object->note_public = GETPOST('public_note', 'alpha');
100
-            $object->note_private = GETPOST('private_note','alpha');
100
+            $object->note_private = GETPOST('private_note', 'alpha');
101 101
 
102 102
             $expenseNoteId = $object->create($expenseNoteUser);
103
-            if($expenseNoteId < 0){
104
-                dol_htmloutput_errors("Erreur lors de la création de la note de frais" , $object->errors);
103
+            if ($expenseNoteId < 0) {
104
+                dol_htmloutput_errors("Erreur lors de la création de la note de frais", $object->errors);
105 105
                 continue;
106 106
             }
107 107
 
108 108
 
109 109
             $flightsForQuarter = findFlightByPilotAndQuarter($currentMissionUserId, $year, $quarter);
110 110
 
111
-            foreach($flightsForQuarter as $currentFlightForQuarter) {
111
+            foreach ($flightsForQuarter as $currentFlightForQuarter) {
112 112
 
113 113
                 // Kilometers
114 114
                 $object_ligne = new ExpenseReportLine($db);
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
 
169 169
         if ($result > 0) {
170 170
             dol_htmloutput_mesg("Notes de frais créées");
171
-        }else{
171
+        } else {
172 172
             dol_htmloutput_errors("Note de frais non créée");
173 173
         }
174 174
     } else {
@@ -187,15 +187,15 @@  discard block
 block discarded – undo
187 187
 $form = new Form($db);
188 188
 
189 189
 $tabLinks = [];
190
-foreach($flightYears as $currentFlightYear){
190
+foreach ($flightYears as $currentFlightYear) {
191 191
     $tabLinks[] = [
192
-        DOL_URL_ROOT."/flightLog/generateExpenseNote.php?year=".$currentFlightYear,
192
+        DOL_URL_ROOT . "/flightLog/generateExpenseNote.php?year=" . $currentFlightYear,
193 193
         $currentFlightYear,
194
-        "tab_".$currentFlightYear
194
+        "tab_" . $currentFlightYear
195 195
     ];
196 196
 }
197 197
 
198
-dol_fiche_head($tabLinks, "tab_".$year);
198
+dol_fiche_head($tabLinks, "tab_" . $year);
199 199
 
200 200
 ?>
201 201
     <form method="POST">
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
         <select name="quarter" id="field_quarter">
212 212
             <option value="1" <?= ($year == $currentYear && $currentQuarter <= 1) ? 'disabled="disabled"' : "" ?>>1</option>
213 213
             <option value="2" <?= ($year == $currentYear && $currentQuarter <= 2) ? 'disabled="disabled"' : "" ?>>2</option>
214
-            <option value="3" <?= ($year == $currentYear && $currentQuarter <= 3) ? 'disabled="disabled"': "" ?>>3</option>
214
+            <option value="3" <?= ($year == $currentYear && $currentQuarter <= 3) ? 'disabled="disabled"' : "" ?>>3</option>
215 215
             <option value="4" <?= ($year == $currentYear && $currentQuarter <= 4) ? 'disabled="disabled"' : "" ?>>4</option>
216 216
         </select>
217 217
         <br/>
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
         <label><?= $langs->trans("Validateur de la note de frais")?></label><br/>
221 221
         <?php
222 222
             $include_users = $object->fetch_users_approver_expensereport();
223
-            print $form->select_dolusers($user->id,"fk_user_validator",1,"",0,$include_users);
223
+            print $form->select_dolusers($user->id, "fk_user_validator", 1, "", 0, $include_users);
224 224
         ?>
225 225
         <br/>
226 226
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
 
169 169
         if ($result > 0) {
170 170
             dol_htmloutput_mesg("Notes de frais créées");
171
-        }else{
171
+        } else{
172 172
             dol_htmloutput_errors("Note de frais non créée");
173 173
         }
174 174
     } else {
Please login to merge, or discard this patch.
class/YearGraphicalData.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
         $result = [$this->year];
70 70
 
71 71
         foreach ($this->graphData as $typeId => $data) {
72
-            if(!in_array($typeId, [1,2,3,6])){
72
+            if (!in_array($typeId, [1, 2, 3, 6])) {
73 73
                 continue;
74 74
             }
75 75
 
Please login to merge, or discard this patch.
class/GraphicalValueType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,14 +36,14 @@
 block discarded – undo
36 36
     /**
37 37
      * @param GraphicalValue $value
38 38
      */
39
-    public function addValue(GraphicalValue $value){
39
+    public function addValue(GraphicalValue $value) {
40 40
         $this->counter = $this->counter->add($value);
41 41
     }
42 42
 
43 43
     /**
44 44
      * @return int
45 45
      */
46
-    public function getValue(){
46
+    public function getValue() {
47 47
         return $this->counter->getValue();
48 48
     }
49 49
 
Please login to merge, or discard this patch.
class/GraphicalData.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      */
41 41
     public function addValue($year, GraphicalValue $value)
42 42
     {
43
-        if(!isset($this->data[$year])){
43
+        if (!isset($this->data[$year])) {
44 44
             throw new \Exception("Year is not defined");
45 45
         }
46 46
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     {
55 55
         $result = [];
56 56
 
57
-        foreach($this->data as $year){
57
+        foreach ($this->data as $year) {
58 58
             $result[] = $year->export();
59 59
         }
60 60
 
Please login to merge, or discard this patch.
list.php 3 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -136,12 +136,12 @@  discard block
 block discarded – undo
136 136
 
137 137
     //'t.entity'=>array('label'=>$langs->trans("Entity"), 'checked'=>1, 'enabled'=>(! empty($conf->multicompany->enabled) && empty($conf->multicompany->transverse_mode))),
138 138
     't.datec'                     => array('label'    => $langs->trans("DateCreationShort"),
139
-                                           'checked'  => 0,
140
-                                           'position' => 500
139
+                                            'checked'  => 0,
140
+                                            'position' => 500
141 141
     ),
142 142
     't.tms'                       => array('label'    => $langs->trans("DateModificationShort"),
143
-                                           'checked'  => 0,
144
-                                           'position' => 500
143
+                                            'checked'  => 0,
144
+                                            'position' => 500
145 145
     ),
146 146
     //'t.statut'=>array('label'=>$langs->trans("Status"), 'checked'=>1, 'position'=>1000),
147 147
 );
@@ -149,9 +149,9 @@  discard block
 block discarded – undo
149 149
 if (is_array($extrafields->attribute_label) && count($extrafields->attribute_label)) {
150 150
     foreach ($extrafields->attribute_label as $key => $val) {
151 151
         $arrayfields["ef." . $key] = array('label'    => $extrafields->attribute_label[$key],
152
-                                           'checked'  => $extrafields->attribute_list[$key],
153
-                                           'position' => $extrafields->attribute_pos[$key],
154
-                                           'enabled'  => $extrafields->attribute_perms[$key]
152
+                                            'checked'  => $extrafields->attribute_list[$key],
153
+                                            'position' => $extrafields->attribute_pos[$key],
154
+                                            'enabled'  => $extrafields->attribute_perms[$key]
155 155
         );
156 156
     }
157 157
 }
Please login to merge, or discard this patch.
Braces   +60 added lines, -20 removed lines patch added patch discarded remove patch
@@ -189,10 +189,12 @@  discard block
 block discarded – undo
189 189
     include DOL_DOCUMENT_ROOT . '/core/actions_changeselectedfields.inc.php';
190 190
 
191 191
     // Purge search criteria
192
-    if (GETPOST("button_removefilter_x") || GETPOST("button_removefilter.x") || GETPOST("button_removefilter")) // All tests are required to be compatible with all browsers
192
+    if (GETPOST("button_removefilter_x") || GETPOST("button_removefilter.x") || GETPOST("button_removefilter")) {
193
+        // All tests are required to be compatible with all browsers
193 194
     {
194 195
 
195 196
         $search_idBBC_vols = '';
197
+    }
196 198
         $search_date = '';
197 199
         $search_lieuD = '';
198 200
         $search_lieuA = '';
@@ -756,7 +758,9 @@  discard block
 block discarded – undo
756 758
         {
757 759
             print '<td>'.$flight->getNomUrl(0).'</td>';
758 760
 
759
-            if (! $i) $totalarray['nbfield']++;
761
+            if (! $i) {
762
+                $totalarray['nbfield']++;
763
+            }
760 764
         }
761 765
         if (! empty($arrayfields['t.date']['checked']))
762 766
         {
@@ -764,104 +768,138 @@  discard block
 block discarded – undo
764 768
                 print dol_print_date($db->jdate($obj->date), '%d-%m-%y');
765 769
             print '</td>';
766 770
 
767
-            if (! $i) $totalarray['nbfield']++;
771
+            if (! $i) {
772
+                $totalarray['nbfield']++;
773
+            }
768 774
         }
769 775
         if (! empty($arrayfields['t.lieuD']['checked']))
770 776
         {
771 777
             print '<td>'.$obj->lieuD.'</td>';
772 778
 
773
-            if (! $i) $totalarray['nbfield']++;
779
+            if (! $i) {
780
+                $totalarray['nbfield']++;
781
+            }
774 782
         }
775 783
         if (! empty($arrayfields['t.lieuA']['checked']))
776 784
         {
777 785
             print '<td>'.$obj->lieuA.'</td>';
778 786
 
779
-            if (! $i) $totalarray['nbfield']++;
787
+            if (! $i) {
788
+                $totalarray['nbfield']++;
789
+            }
780 790
         }
781 791
         if (! empty($arrayfields['t.heureD']['checked']))
782 792
         {
783 793
             print '<td>'.$obj->heureD.'</td>';
784 794
 
785
-            if (! $i) $totalarray['nbfield']++;
795
+            if (! $i) {
796
+                $totalarray['nbfield']++;
797
+            }
786 798
         }
787 799
         if (! empty($arrayfields['t.heureA']['checked']))
788 800
         {
789 801
             print '<td>'.$obj->heureA.'</td>';
790 802
 
791
-            if (! $i) $totalarray['nbfield']++;
803
+            if (! $i) {
804
+                $totalarray['nbfield']++;
805
+            }
792 806
         }
793 807
         if (! empty($arrayfields['t.BBC_ballons_idBBC_ballons']['checked']))
794 808
         {
795 809
             print '<td>'.$obj->bal.'</td>';
796 810
 
797
-            if (! $i) $totalarray['nbfield']++;
811
+            if (! $i) {
812
+                $totalarray['nbfield']++;
813
+            }
798 814
         }
799 815
         if (! empty($arrayfields['t.nbrPax']['checked']))
800 816
         {
801 817
             print '<td>'.$obj->nbrPax.'</td>';
802 818
 
803
-            if (! $i) $totalarray['nbfield']++;
819
+            if (! $i) {
820
+                $totalarray['nbfield']++;
821
+            }
804 822
         }
805 823
         if (! empty($arrayfields['t.remarque']['checked']))
806 824
         {
807 825
             print '<td>'.$obj->remarque.'</td>';
808 826
 
809
-            if (! $i) $totalarray['nbfield']++;
827
+            if (! $i) {
828
+                $totalarray['nbfield']++;
829
+            }
810 830
         }
811 831
         if (! empty($arrayfields['t.incidents']['checked']))
812 832
         {
813 833
             print '<td>'.$obj->incidents.'</td>';
814 834
 
815
-            if (! $i) $totalarray['nbfield']++;
835
+            if (! $i) {
836
+                $totalarray['nbfield']++;
837
+            }
816 838
         }
817 839
         if (! empty($arrayfields['t.fk_type']['checked']))
818 840
         {
819 841
             print '<td>'.$obj->flight_type.'</td>';
820 842
 
821
-            if (! $i) $totalarray['nbfield']++;
843
+            if (! $i) {
844
+                $totalarray['nbfield']++;
845
+            }
822 846
         }
823 847
         if (! empty($arrayfields['t.fk_pilot']['checked']))
824 848
         {
825 849
             print '<td>'.$obj->pilot.'</td>';
826 850
 
827
-            if (! $i) $totalarray['nbfield']++;
851
+            if (! $i) {
852
+                $totalarray['nbfield']++;
853
+            }
828 854
         }
829 855
         if (! empty($arrayfields['t.fk_organisateur']['checked']))
830 856
         {
831 857
             print '<td>'.$obj->organisator.'</td>';
832 858
 
833
-            if (! $i) $totalarray['nbfield']++;
859
+            if (! $i) {
860
+                $totalarray['nbfield']++;
861
+            }
834 862
         }
835 863
         if (! empty($arrayfields['t.is_facture']['checked']))
836 864
         {
837 865
             $flight->is_facture = $obj->is_facture;
838 866
             print '<td>'.$flight->getLibStatut(3).'</td>';
839 867
 
840
-            if (! $i) $totalarray['nbfield']++;
868
+            if (! $i) {
869
+                $totalarray['nbfield']++;
870
+            }
841 871
         }
842 872
         if (! empty($arrayfields['t.kilometers']['checked']))
843 873
         {
844 874
             print '<td>'.$obj->kilometers.'</td>';
845 875
 
846
-            if (! $i) $totalarray['nbfield']++;
876
+            if (! $i) {
877
+                $totalarray['nbfield']++;
878
+            }
847 879
         }
848 880
         if (! empty($arrayfields['t.cost']['checked']))
849 881
         {
850 882
             print '<td>'.$obj->cost.'</td>';
851 883
 
852
-            if (! $i) $totalarray['nbfield']++;
884
+            if (! $i) {
885
+                $totalarray['nbfield']++;
886
+            }
853 887
         }
854 888
         if (! empty($arrayfields['t.fk_receiver']['checked']))
855 889
         {
856 890
             print '<td>'.$obj->receiver.'</td>';
857 891
 
858
-            if (! $i) $totalarray['nbfield']++;
892
+            if (! $i) {
893
+                $totalarray['nbfield']++;
894
+            }
859 895
         }
860 896
         if (! empty($arrayfields['t.justif_kilometers']['checked']))
861 897
         {
862 898
             print '<td>'.$obj->justif_kilometers.'</td>';
863 899
 
864
-            if (! $i) $totalarray['nbfield']++;
900
+            if (! $i) {
901
+                $totalarray['nbfield']++;
902
+            }
865 903
         }
866 904
 
867 905
         // Extra fields
@@ -916,9 +954,11 @@  discard block
 block discarded – undo
916 954
 
917 955
         // Action column
918 956
         print '<td class="nowrap" align="center">';
919
-        if ($massactionbutton || $massaction)   // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
957
+        if ($massactionbutton || $massaction) {
958
+            // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
920 959
         {
921 960
             $selected = 0;
961
+        }
922 962
             if (in_array($obj->idBBC_vols, $arrayofselected)) {
923 963
                 $selected = 1;
924 964
             }
Please login to merge, or discard this patch.
Spacing   +83 added lines, -83 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
 
179 179
 $parameters = array();
180 180
 $reshook = $hookmanager->executeHooks('doActions', $parameters, $object,
181
-    $action);    // Note that $action and $object may have been modified by some hooks
181
+    $action); // Note that $action and $object may have been modified by some hooks
182 182
 if ($reshook < 0) {
183 183
     setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
184 184
 }
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
 // Add fields from hooks
291 291
 $parameters = array();
292 292
 $reshook = $hookmanager->executeHooks('printFieldListSelect',
293
-    $parameters);    // Note that $action and $object may have been modified by hook
293
+    $parameters); // Note that $action and $object may have been modified by hook
294 294
 $sql .= $hookmanager->resPrint;
295 295
 $sql .= " FROM " . MAIN_DB_PREFIX . "bbc_vols as t";
296 296
 if (is_array($extrafields->attribute_label) && count($extrafields->attribute_label)) {
@@ -304,8 +304,8 @@  discard block
 block discarded – undo
304 304
 
305 305
 $sql .= " WHERE 1 = 1";
306 306
 
307
-if($search_all){
308
-    $sql .= natural_search(["idBBC_vols",  "lieuD", "lieuA", "pilot.lastname", "pilot.firstname", "balloon.immat"], $search_all);
307
+if ($search_all) {
308
+    $sql .= natural_search(["idBBC_vols", "lieuD", "lieuA", "pilot.lastname", "pilot.firstname", "balloon.immat"], $search_all);
309 309
 }
310 310
 
311 311
 if ($search_idBBC_vols) {
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
 // Add where from hooks
385 385
 $parameters = array();
386 386
 $reshook = $hookmanager->executeHooks('printFieldListWhere',
387
-    $parameters);    // Note that $action and $object may have been modified by hook
387
+    $parameters); // Note that $action and $object may have been modified by hook
388 388
 $sql .= $hookmanager->resPrint;
389 389
 $sql .= $db->order($sortfield, $sortorder);
390 390
 //$sql.= $db->plimit($conf->liste_limit+1, $offset);
@@ -426,58 +426,58 @@  discard block
 block discarded – undo
426 426
 if ($limit > 0 && $limit != $conf->liste_limit) {
427 427
     $param .= '&limit=' . $limit;
428 428
 }
429
-if ($search_idBBC_vols  != '') {
429
+if ($search_idBBC_vols != '') {
430 430
     $param .= '&amp;search_idBBC_vols=' . urlencode($search_idBBC_vols);
431 431
 }
432
-if ($search_date  != '') {
432
+if ($search_date != '') {
433 433
     $param .= '&amp;search_date=' . urlencode($search_date);
434 434
 }
435
-if ($search_lieuD  != '') {
435
+if ($search_lieuD != '') {
436 436
     $param .= '&amp;search_lieuD=' . urlencode($search_lieuD);
437 437
 }
438
-if ($search_lieuA  != '') {
438
+if ($search_lieuA != '') {
439 439
     $param .= '&amp;search_lieuA=' . urlencode($search_lieuA);
440 440
 }
441
-if ($search_heureD  != '') {
441
+if ($search_heureD != '') {
442 442
     $param .= '&amp;search_heureD=' . urlencode($search_heureD);
443 443
 }
444
-if ($search_heureA  != '') {
444
+if ($search_heureA != '') {
445 445
     $param .= '&amp;search_heureA=' . urlencode($search_heureA);
446 446
 }
447
-if ($search_BBC_ballons_idBBC_ballons  != '') {
447
+if ($search_BBC_ballons_idBBC_ballons != '') {
448 448
     $param .= '&amp;search_BBC_ballons_idBBC_ballons=' . urlencode($search_BBC_ballons_idBBC_ballons);
449 449
 }
450
-if ($search_nbrPax  != '') {
450
+if ($search_nbrPax != '') {
451 451
     $param .= '&amp;search_nbrPax=' . urlencode($search_nbrPax);
452 452
 }
453
-if ($search_remarque  != '') {
453
+if ($search_remarque != '') {
454 454
     $param .= '&amp;search_remarque=' . urlencode($search_remarque);
455 455
 }
456
-if ($search_incidents  != '') {
456
+if ($search_incidents != '') {
457 457
     $param .= '&amp;search_incidents=' . urlencode($search_incidents);
458 458
 }
459
-if ($search_fk_type  != '') {
459
+if ($search_fk_type != '') {
460 460
     $param .= '&amp;search_fk_type=' . urlencode($search_fk_type);
461 461
 }
462 462
 if ($search_fk_pilot != '') {
463 463
     $param .= '&amp;search_fk_pilot=' . urlencode($search_fk_pilot);
464 464
 }
465
-if ($search_fk_organisateur  != '') {
465
+if ($search_fk_organisateur != '') {
466 466
     $param .= '&amp;search_fk_organisateur=' . urlencode($search_fk_organisateur);
467 467
 }
468
-if ($search_is_facture  != '') {
468
+if ($search_is_facture != '') {
469 469
     $param .= '&amp;search_is_facture=' . urlencode($search_is_facture);
470 470
 }
471
-if ($search_kilometers  != '') {
471
+if ($search_kilometers != '') {
472 472
     $param .= '&amp;search_kilometers=' . urlencode($search_kilometers);
473 473
 }
474
-if ($search_cost  != '') {
474
+if ($search_cost != '') {
475 475
     $param .= '&amp;search_cost=' . urlencode($search_cost);
476 476
 }
477
-if ($search_fk_receiver  != '') {
477
+if ($search_fk_receiver != '') {
478 478
     $param .= '&amp;search_fk_receiver=' . urlencode($search_fk_receiver);
479 479
 }
480
-if ($search_justif_kilometers  != '') {
480
+if ($search_justif_kilometers != '') {
481 481
     $param .= '&amp;search_justif_kilometers=' . urlencode($search_justif_kilometers);
482 482
 }
483 483
 if ($search_all != '') {
@@ -521,8 +521,8 @@  discard block
 block discarded – undo
521 521
 
522 522
 
523 523
 $moreHtml = "";
524
-if($search_all !== ""){
525
-    $moreHtml = "<p>".$langs->trans(sprintf("La liste est en recherche globale sur : l'identifiant du vol, le nom du pilote, l'immat du ballon, le lieu de Décollage et le lieu d'atterissage : %s", $search_all))."</p>";
524
+if ($search_all !== "") {
525
+    $moreHtml = "<p>" . $langs->trans(sprintf("La liste est en recherche globale sur : l'identifiant du vol, le nom du pilote, l'immat du ballon, le lieu de Décollage et le lieu d'atterissage : %s", $search_all)) . "</p>";
526 526
 }
527 527
 
528 528
 print_barre_liste($title, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, $nbtotalofrecords,
@@ -542,7 +542,7 @@  discard block
 block discarded – undo
542 542
 
543 543
 $parameters = array();
544 544
 $reshook = $hookmanager->executeHooks('printFieldPreListTitle',
545
-    $parameters);    // Note that $action and $object may have been modified by hook
545
+    $parameters); // Note that $action and $object may have been modified by hook
546 546
 if (empty($reshook)) {
547 547
     $moreforfilter .= $hookmanager->resPrint;
548 548
 } else {
@@ -557,7 +557,7 @@  discard block
 block discarded – undo
557 557
 
558 558
 $varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage;
559 559
 $selectedfields = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields,
560
-    $varpage);    // This also change content of $arrayfields
560
+    $varpage); // This also change content of $arrayfields
561 561
 
562 562
 print '<div class="div-table-responsive">';
563 563
 print '<table class="tagtable liste' . ($moreforfilter ? " listwithfilterbefore" : "") . '">' . "\n";
@@ -652,7 +652,7 @@  discard block
 block discarded – undo
652 652
 // Hook fields
653 653
 $parameters = array('arrayfields' => $arrayfields);
654 654
 $reshook = $hookmanager->executeHooks('printFieldListTitle',
655
-    $parameters);    // Note that $action and $object may have been modified by hook
655
+    $parameters); // Note that $action and $object may have been modified by hook
656 656
 print $hookmanager->resPrint;
657 657
 if (!empty($arrayfields['t.datec']['checked'])) {
658 658
     print_liste_field_titre($arrayfields['t.datec']['label'], $_SERVER["PHP_SELF"], "t.datec", "", $param,
@@ -766,7 +766,7 @@  discard block
 block discarded – undo
766 766
 // Fields from hook
767 767
 $parameters = array('arrayfields' => $arrayfields);
768 768
 $reshook = $hookmanager->executeHooks('printFieldListOption',
769
-    $parameters);    // Note that $action and $object may have been modified by hook
769
+    $parameters); // Note that $action and $object may have been modified by hook
770 770
 print $hookmanager->resPrint;
771 771
 if (!empty($arrayfields['t.datec']['checked'])) {
772 772
     // Date creation
@@ -807,116 +807,116 @@  discard block
 block discarded – undo
807 807
         // Show here line of result
808 808
         print '<tr ' . $bc[$var] . '>';
809 809
 
810
-        if (! empty($arrayfields['t.idBBC_vols']['checked']))
810
+        if (!empty($arrayfields['t.idBBC_vols']['checked']))
811 811
         {
812
-            print '<td>'.$flight->getNomUrl(0).'</td>';
812
+            print '<td>' . $flight->getNomUrl(0) . '</td>';
813 813
 
814
-            if (! $i) $totalarray['nbfield']++;
814
+            if (!$i) $totalarray['nbfield']++;
815 815
         }
816
-        if (! empty($arrayfields['t.date']['checked']))
816
+        if (!empty($arrayfields['t.date']['checked']))
817 817
         {
818 818
             print '<td>';
819 819
                 print dol_print_date($db->jdate($obj->date), '%d-%m-%y');
820 820
             print '</td>';
821 821
 
822
-            if (! $i) $totalarray['nbfield']++;
822
+            if (!$i) $totalarray['nbfield']++;
823 823
         }
824
-        if (! empty($arrayfields['t.lieuD']['checked']))
824
+        if (!empty($arrayfields['t.lieuD']['checked']))
825 825
         {
826
-            print '<td>'.$obj->lieuD.'</td>';
826
+            print '<td>' . $obj->lieuD . '</td>';
827 827
 
828
-            if (! $i) $totalarray['nbfield']++;
828
+            if (!$i) $totalarray['nbfield']++;
829 829
         }
830
-        if (! empty($arrayfields['t.lieuA']['checked']))
830
+        if (!empty($arrayfields['t.lieuA']['checked']))
831 831
         {
832
-            print '<td>'.$obj->lieuA.'</td>';
832
+            print '<td>' . $obj->lieuA . '</td>';
833 833
 
834
-            if (! $i) $totalarray['nbfield']++;
834
+            if (!$i) $totalarray['nbfield']++;
835 835
         }
836
-        if (! empty($arrayfields['t.heureD']['checked']))
836
+        if (!empty($arrayfields['t.heureD']['checked']))
837 837
         {
838
-            print '<td>'.$obj->heureD.'</td>';
838
+            print '<td>' . $obj->heureD . '</td>';
839 839
 
840
-            if (! $i) $totalarray['nbfield']++;
840
+            if (!$i) $totalarray['nbfield']++;
841 841
         }
842
-        if (! empty($arrayfields['t.heureA']['checked']))
842
+        if (!empty($arrayfields['t.heureA']['checked']))
843 843
         {
844
-            print '<td>'.$obj->heureA.'</td>';
844
+            print '<td>' . $obj->heureA . '</td>';
845 845
 
846
-            if (! $i) $totalarray['nbfield']++;
846
+            if (!$i) $totalarray['nbfield']++;
847 847
         }
848
-        if (! empty($arrayfields['t.BBC_ballons_idBBC_ballons']['checked']))
848
+        if (!empty($arrayfields['t.BBC_ballons_idBBC_ballons']['checked']))
849 849
         {
850
-            print '<td>'.$obj->bal.'</td>';
850
+            print '<td>' . $obj->bal . '</td>';
851 851
 
852
-            if (! $i) $totalarray['nbfield']++;
852
+            if (!$i) $totalarray['nbfield']++;
853 853
         }
854
-        if (! empty($arrayfields['t.nbrPax']['checked']))
854
+        if (!empty($arrayfields['t.nbrPax']['checked']))
855 855
         {
856
-            print '<td>'.$obj->nbrPax.'</td>';
856
+            print '<td>' . $obj->nbrPax . '</td>';
857 857
 
858
-            if (! $i) $totalarray['nbfield']++;
858
+            if (!$i) $totalarray['nbfield']++;
859 859
         }
860
-        if (! empty($arrayfields['t.remarque']['checked']))
860
+        if (!empty($arrayfields['t.remarque']['checked']))
861 861
         {
862
-            print '<td>'.$obj->remarque.'</td>';
862
+            print '<td>' . $obj->remarque . '</td>';
863 863
 
864
-            if (! $i) $totalarray['nbfield']++;
864
+            if (!$i) $totalarray['nbfield']++;
865 865
         }
866
-        if (! empty($arrayfields['t.incidents']['checked']))
866
+        if (!empty($arrayfields['t.incidents']['checked']))
867 867
         {
868
-            print '<td>'.$obj->incidents.'</td>';
868
+            print '<td>' . $obj->incidents . '</td>';
869 869
 
870
-            if (! $i) $totalarray['nbfield']++;
870
+            if (!$i) $totalarray['nbfield']++;
871 871
         }
872
-        if (! empty($arrayfields['t.fk_type']['checked']))
872
+        if (!empty($arrayfields['t.fk_type']['checked']))
873 873
         {
874
-            print '<td>'.$obj->flight_type.'</td>';
874
+            print '<td>' . $obj->flight_type . '</td>';
875 875
 
876
-            if (! $i) $totalarray['nbfield']++;
876
+            if (!$i) $totalarray['nbfield']++;
877 877
         }
878
-        if (! empty($arrayfields['t.fk_pilot']['checked']))
878
+        if (!empty($arrayfields['t.fk_pilot']['checked']))
879 879
         {
880
-            print '<td>'.$obj->pilot.'</td>';
880
+            print '<td>' . $obj->pilot . '</td>';
881 881
 
882
-            if (! $i) $totalarray['nbfield']++;
882
+            if (!$i) $totalarray['nbfield']++;
883 883
         }
884
-        if (! empty($arrayfields['t.fk_organisateur']['checked']))
884
+        if (!empty($arrayfields['t.fk_organisateur']['checked']))
885 885
         {
886
-            print '<td>'.$obj->organisator.'</td>';
886
+            print '<td>' . $obj->organisator . '</td>';
887 887
 
888
-            if (! $i) $totalarray['nbfield']++;
888
+            if (!$i) $totalarray['nbfield']++;
889 889
         }
890
-        if (! empty($arrayfields['t.is_facture']['checked']))
890
+        if (!empty($arrayfields['t.is_facture']['checked']))
891 891
         {
892 892
             $flight->is_facture = $obj->is_facture;
893
-            print '<td>'.$flight->getLibStatut(3).'</td>';
893
+            print '<td>' . $flight->getLibStatut(3) . '</td>';
894 894
 
895
-            if (! $i) $totalarray['nbfield']++;
895
+            if (!$i) $totalarray['nbfield']++;
896 896
         }
897
-        if (! empty($arrayfields['t.kilometers']['checked']))
897
+        if (!empty($arrayfields['t.kilometers']['checked']))
898 898
         {
899
-            print '<td>'.$obj->kilometers.'</td>';
899
+            print '<td>' . $obj->kilometers . '</td>';
900 900
 
901
-            if (! $i) $totalarray['nbfield']++;
901
+            if (!$i) $totalarray['nbfield']++;
902 902
         }
903
-        if (! empty($arrayfields['t.cost']['checked']))
903
+        if (!empty($arrayfields['t.cost']['checked']))
904 904
         {
905
-            print '<td>'.$obj->cost.'</td>';
905
+            print '<td>' . $obj->cost . '</td>';
906 906
 
907
-            if (! $i) $totalarray['nbfield']++;
907
+            if (!$i) $totalarray['nbfield']++;
908 908
         }
909
-        if (! empty($arrayfields['t.fk_receiver']['checked']))
909
+        if (!empty($arrayfields['t.fk_receiver']['checked']))
910 910
         {
911
-            print '<td>'.$obj->receiver.'</td>';
911
+            print '<td>' . $obj->receiver . '</td>';
912 912
 
913
-            if (! $i) $totalarray['nbfield']++;
913
+            if (!$i) $totalarray['nbfield']++;
914 914
         }
915
-        if (! empty($arrayfields['t.justif_kilometers']['checked']))
915
+        if (!empty($arrayfields['t.justif_kilometers']['checked']))
916 916
         {
917
-            print '<td>'.$obj->justif_kilometers.'</td>';
917
+            print '<td>' . $obj->justif_kilometers . '</td>';
918 918
 
919
-            if (! $i) $totalarray['nbfield']++;
919
+            if (!$i) $totalarray['nbfield']++;
920 920
         }
921 921
 
922 922
         // Extra fields
@@ -941,7 +941,7 @@  discard block
 block discarded – undo
941 941
         // Fields from hook
942 942
         $parameters = array('arrayfields' => $arrayfields, 'obj' => $obj);
943 943
         $reshook = $hookmanager->executeHooks('printFieldListValue',
944
-            $parameters);    // Note that $action and $object may have been modified by hook
944
+            $parameters); // Note that $action and $object may have been modified by hook
945 945
         print $hookmanager->resPrint;
946 946
         // Date creation
947 947
         if (!empty($arrayfields['t.datec']['checked'])) {
@@ -1018,7 +1018,7 @@  discard block
 block discarded – undo
1018 1018
 
1019 1019
 $parameters = array('arrayfields' => $arrayfields, 'sql' => $sql);
1020 1020
 $reshook = $hookmanager->executeHooks('printFieldListFooter',
1021
-    $parameters);    // Note that $action and $object may have been modified by hook
1021
+    $parameters); // Note that $action and $object may have been modified by hook
1022 1022
 print $hookmanager->resPrint;
1023 1023
 
1024 1024
 print '</table>' . "\n";
Please login to merge, or discard this patch.
core/modules/modFlightLog.class.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -430,7 +430,7 @@  discard block
 block discarded – undo
430 430
      */
431 431
     private function initPermissions()
432 432
     {
433
-        $this->rights = array();        // Permission array used by this module
433
+        $this->rights = array(); // Permission array used by this module
434 434
         $r = 0;
435 435
 
436 436
         $this->rights[$r][0] = 9993;
@@ -485,7 +485,7 @@  discard block
 block discarded – undo
485 485
 
486 486
     private function initCronJobs()
487 487
     {
488
-        $this->cronjobs = array();            // List of cron jobs entries to add
488
+        $this->cronjobs = array(); // List of cron jobs entries to add
489 489
         // Example: $this->cronjobs=array(0=>array('label'=>'My label', 'jobtype'=>'method', 'class'=>'/dir/class/file.class.php', 'objectname'=>'MyClass', 'method'=>'myMethod', 'parameters'=>'', 'comment'=>'Comment', 'frequency'=>2, 'unitfrequency'=>3600, 'test'=>true),
490 490
         //                                1=>array('label'=>'My label', 'jobtype'=>'command', 'command'=>'', 'parameters'=>'', 'comment'=>'Comment', 'frequency'=>1, 'unitfrequency'=>3600*24, 'test'=>true)
491 491
         // );
Please login to merge, or discard this patch.
lib/flightLog.lib.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -149,9 +149,9 @@
 block discarded – undo
149 149
 }
150 150
 
151 151
 /**
152
- * @param null $year
153
- * @param null $pilotId
154
- * @param null $quarter
152
+ * @param integer $year
153
+ * @param integer $pilotId
154
+ * @param integer $quarter
155 155
  * @param bool $groupBy
156 156
  *
157 157
  * @return string
Please login to merge, or discard this patch.
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -337,7 +337,7 @@  discard block
 block discarded – undo
337 337
     $totalQ4 = 0;
338 338
 
339 339
     $curMonth = date("m", time());
340
-    $curQuarter = ceil($curMonth/3);
340
+    $curQuarter = ceil($curMonth / 3);
341 341
     $disableColor = 'style="background-color: lightyellow;" title="N/A" data-toggle="tooltip"';
342 342
 
343 343
     foreach ($kmByQuartil as $id => $rembKm) {
@@ -371,29 +371,29 @@  discard block
 block discarded – undo
371 371
         print '<td>' . $name . '</td>';
372 372
         print '<td>' . $firstname . '</td>';
373 373
 
374
-        print '<td'.($curQuarter < 1 ? $disableColor: '').'>' . ($flightsQ1) . '</td>';
375
-        print '<td'.($curQuarter < 1 ? $disableColor: '').'>' . ($flightsQ1 * $unitPriceMission) . '€</td>';
376
-        print '<td'.($curQuarter < 1 ? $disableColor: '').'>' . $sumQ1 . '</td>';
377
-        print '<td'.($curQuarter < 1 ? $disableColor: '').'>' . ($sumQ1 * $tauxRemb) . '</td>';
378
-        print '<td'.($curQuarter < 1 ? $disableColor: '').'><b>' . $amoutQ1 . '€</b></td>';
379
-
380
-        print '<td '.($curQuarter < 2 ? $disableColor: '').'>' . ($flightsQ2) . '</td>';
381
-        print '<td '.($curQuarter < 2 ? $disableColor: '').'>' . ($flightsQ2 * $unitPriceMission) . '€</td>';
382
-        print '<td '.($curQuarter < 2 ? $disableColor: '').'>' . $sumQ2 . '</td>';
383
-        print '<td '.($curQuarter < 2 ? $disableColor: '').'>' . ($sumQ2 * $tauxRemb) . '</td>';
384
-        print '<td '.($curQuarter < 2 ? $disableColor: '').'><b>' . $amoutQ2 . '€</b></td>';
385
-
386
-        print '<td '.($curQuarter < 3 ? $disableColor: '').'>' . ($flightsQ3) . '</td>';
387
-        print '<td '.($curQuarter < 3 ? $disableColor: '').'>' . ($flightsQ3 * $unitPriceMission) . '€</td>';
388
-        print '<td '.($curQuarter < 3 ? $disableColor: '').'>' . $sumQ3 . '</td>';
389
-        print '<td '.($curQuarter < 3 ? $disableColor: '').'>' . ($sumQ3 * $tauxRemb) . '</td>';
390
-        print '<td '.($curQuarter < 3 ? $disableColor: '').'><b>' . $amoutQ3 . '€</b></td>';
391
-
392
-        print '<td '.($curQuarter < 4 ? $disableColor: '').'>' . ($flightsQ4) . '</td>';
393
-        print '<td '.($curQuarter < 4 ? $disableColor: '').'>' . ($flightsQ4 * $unitPriceMission) . '€</td>';
394
-        print '<td '.($curQuarter < 4 ? $disableColor: '').'>' . $sumQ4 . '</td>';
395
-        print '<td '.($curQuarter < 4 ? $disableColor: '').'>' . ($sumQ4 * $tauxRemb) . '</td>';
396
-        print '<td '.($curQuarter < 4 ? $disableColor: '').'><b>' . $amoutQ4 . '€</b></td>';
374
+        print '<td' . ($curQuarter < 1 ? $disableColor : '') . '>' . ($flightsQ1) . '</td>';
375
+        print '<td' . ($curQuarter < 1 ? $disableColor : '') . '>' . ($flightsQ1 * $unitPriceMission) . '€</td>';
376
+        print '<td' . ($curQuarter < 1 ? $disableColor : '') . '>' . $sumQ1 . '</td>';
377
+        print '<td' . ($curQuarter < 1 ? $disableColor : '') . '>' . ($sumQ1 * $tauxRemb) . '</td>';
378
+        print '<td' . ($curQuarter < 1 ? $disableColor : '') . '><b>' . $amoutQ1 . '€</b></td>';
379
+
380
+        print '<td ' . ($curQuarter < 2 ? $disableColor : '') . '>' . ($flightsQ2) . '</td>';
381
+        print '<td ' . ($curQuarter < 2 ? $disableColor : '') . '>' . ($flightsQ2 * $unitPriceMission) . '€</td>';
382
+        print '<td ' . ($curQuarter < 2 ? $disableColor : '') . '>' . $sumQ2 . '</td>';
383
+        print '<td ' . ($curQuarter < 2 ? $disableColor : '') . '>' . ($sumQ2 * $tauxRemb) . '</td>';
384
+        print '<td ' . ($curQuarter < 2 ? $disableColor : '') . '><b>' . $amoutQ2 . '€</b></td>';
385
+
386
+        print '<td ' . ($curQuarter < 3 ? $disableColor : '') . '>' . ($flightsQ3) . '</td>';
387
+        print '<td ' . ($curQuarter < 3 ? $disableColor : '') . '>' . ($flightsQ3 * $unitPriceMission) . '€</td>';
388
+        print '<td ' . ($curQuarter < 3 ? $disableColor : '') . '>' . $sumQ3 . '</td>';
389
+        print '<td ' . ($curQuarter < 3 ? $disableColor : '') . '>' . ($sumQ3 * $tauxRemb) . '</td>';
390
+        print '<td ' . ($curQuarter < 3 ? $disableColor : '') . '><b>' . $amoutQ3 . '€</b></td>';
391
+
392
+        print '<td ' . ($curQuarter < 4 ? $disableColor : '') . '>' . ($flightsQ4) . '</td>';
393
+        print '<td ' . ($curQuarter < 4 ? $disableColor : '') . '>' . ($flightsQ4 * $unitPriceMission) . '€</td>';
394
+        print '<td ' . ($curQuarter < 4 ? $disableColor : '') . '>' . $sumQ4 . '</td>';
395
+        print '<td ' . ($curQuarter < 4 ? $disableColor : '') . '>' . ($sumQ4 * $tauxRemb) . '</td>';
396
+        print '<td ' . ($curQuarter < 4 ? $disableColor : '') . '><b>' . $amoutQ4 . '€</b></td>';
397 397
 
398 398
         print '<td>' . (($sumFlights * $unitPriceMission) + ($sumKm * $tauxRemb)) . '€</td>';
399 399
 
@@ -401,13 +401,13 @@  discard block
 block discarded – undo
401 401
     }
402 402
 
403 403
     print "<td colspan='6'></td>";
404
-    print "<td>".price($totalQ1)."€</td>";
404
+    print "<td>" . price($totalQ1) . "€</td>";
405 405
     print "<td colspan='4'></td>";
406
-    print "<td>".price($totalQ2)."€</td>";
406
+    print "<td>" . price($totalQ2) . "€</td>";
407 407
     print "<td colspan='4'></td>";
408
-    print "<td>".price($totalQ3)."€</td>";
408
+    print "<td>" . price($totalQ3) . "€</td>";
409 409
     print "<td colspan='4'></td>";
410
-    print "<td>".price($totalQ4)."€</td>";
410
+    print "<td>" . price($totalQ4) . "€</td>";
411 411
     print "<td></td>";
412 412
 
413 413
     print '</table>';
Please login to merge, or discard this patch.
class/bbctypes.class.php 3 patches
Indentation   +491 added lines, -491 removed lines patch added patch discarded remove patch
@@ -41,211 +41,211 @@  discard block
 block discarded – undo
41 41
  */
42 42
 class Bbctypes extends CommonObject
43 43
 {
44
-	/**
45
-	 * @var string Id to identify managed objects
46
-	 */
47
-	public $element = 'bbctypes';
48
-	/**
49
-	 * @var string Name of table without prefix where object is stored
50
-	 */
51
-	public $table_element = 'bbc_types';
52
-
53
-	/**
54
-	 * @var BbctypesLine[] Lines
55
-	 */
56
-	public $lines = array();
57
-
58
-	/**
59
-	 */
44
+    /**
45
+     * @var string Id to identify managed objects
46
+     */
47
+    public $element = 'bbctypes';
48
+    /**
49
+     * @var string Name of table without prefix where object is stored
50
+     */
51
+    public $table_element = 'bbc_types';
52
+
53
+    /**
54
+     * @var BbctypesLine[] Lines
55
+     */
56
+    public $lines = array();
57
+
58
+    /**
59
+     */
60 60
 	
61
-	public $idType;
62
-	public $numero;
63
-	public $nom;
64
-	public $active;
65
-
66
-	/**
67
-	 * Constructor
68
-	 *
69
-	 * @param DoliDb $db Database handler
70
-	 */
71
-	public function __construct(DoliDB $db)
72
-	{
73
-		$this->db = $db;
74
-	}
75
-
76
-	/**
77
-	 * Create object into database
78
-	 *
79
-	 * @param  User $user      User that creates
80
-	 * @param  bool $notrigger false=launch triggers after, true=disable triggers
81
-	 *
82
-	 * @return int <0 if KO, Id of created object if OK
83
-	 */
84
-	public function create(User $user, $notrigger = false)
85
-	{
86
-		dol_syslog(__METHOD__, LOG_DEBUG);
87
-
88
-		$error = 0;
89
-
90
-		// Clean parameters
61
+    public $idType;
62
+    public $numero;
63
+    public $nom;
64
+    public $active;
65
+
66
+    /**
67
+     * Constructor
68
+     *
69
+     * @param DoliDb $db Database handler
70
+     */
71
+    public function __construct(DoliDB $db)
72
+    {
73
+        $this->db = $db;
74
+    }
75
+
76
+    /**
77
+     * Create object into database
78
+     *
79
+     * @param  User $user      User that creates
80
+     * @param  bool $notrigger false=launch triggers after, true=disable triggers
81
+     *
82
+     * @return int <0 if KO, Id of created object if OK
83
+     */
84
+    public function create(User $user, $notrigger = false)
85
+    {
86
+        dol_syslog(__METHOD__, LOG_DEBUG);
87
+
88
+        $error = 0;
89
+
90
+        // Clean parameters
91 91
 		
92
-		if (isset($this->idType)) {
93
-			 $this->idType = trim($this->idType);
94
-		}
95
-		if (isset($this->numero)) {
96
-			 $this->numero = trim($this->numero);
97
-		}
98
-		if (isset($this->nom)) {
99
-			 $this->nom = trim($this->nom);
100
-		}
101
-		if (isset($this->active)) {
102
-			 $this->active = trim($this->active);
103
-		}
104
-
105
-
106
-
107
-		// Check parameters
108
-		// Put here code to add control on parameters values
109
-
110
-		// Insert request
111
-		$sql = 'INSERT INTO ' . MAIN_DB_PREFIX . $this->table_element . '(';
92
+        if (isset($this->idType)) {
93
+                $this->idType = trim($this->idType);
94
+        }
95
+        if (isset($this->numero)) {
96
+                $this->numero = trim($this->numero);
97
+        }
98
+        if (isset($this->nom)) {
99
+                $this->nom = trim($this->nom);
100
+        }
101
+        if (isset($this->active)) {
102
+                $this->active = trim($this->active);
103
+        }
104
+
105
+
106
+
107
+        // Check parameters
108
+        // Put here code to add control on parameters values
109
+
110
+        // Insert request
111
+        $sql = 'INSERT INTO ' . MAIN_DB_PREFIX . $this->table_element . '(';
112 112
 		
113
-		$sql.= 'numero,';
114
-		$sql.= 'nom';
115
-		$sql.= 'active';
113
+        $sql.= 'numero,';
114
+        $sql.= 'nom';
115
+        $sql.= 'active';
116 116
 
117 117
 		
118
-		$sql .= ') VALUES (';
118
+        $sql .= ') VALUES (';
119 119
 		
120
-		$sql .= ' '.(! isset($this->numero)?'NULL':$this->numero).',';
121
-		$sql .= ' '.(! isset($this->nom)?'NULL':"'".$this->db->escape($this->nom)."'").',';
122
-		$sql .= ' '.(! isset($this->active)?'NULL':$this->active);
120
+        $sql .= ' '.(! isset($this->numero)?'NULL':$this->numero).',';
121
+        $sql .= ' '.(! isset($this->nom)?'NULL':"'".$this->db->escape($this->nom)."'").',';
122
+        $sql .= ' '.(! isset($this->active)?'NULL':$this->active);
123 123
 
124 124
 		
125
-		$sql .= ')';
126
-
127
-		$this->db->begin();
128
-
129
-		$resql = $this->db->query($sql);
130
-		if (!$resql) {
131
-			$error ++;
132
-			$this->errors[] = 'Error ' . $this->db->lasterror();
133
-			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
134
-		}
135
-
136
-		if (!$error) {
137
-			$this->id = $this->db->last_insert_id(MAIN_DB_PREFIX . $this->table_element);
138
-
139
-			if (!$notrigger) {
140
-				// Uncomment this and change MYOBJECT to your own tag if you
141
-				// want this action to call a trigger.
142
-
143
-				//// Call triggers
144
-				//$result=$this->call_trigger('MYOBJECT_CREATE',$user);
145
-				//if ($result < 0) $error++;
146
-				//// End call triggers
147
-			}
148
-		}
149
-
150
-		// Commit or rollback
151
-		if ($error) {
152
-			$this->db->rollback();
153
-
154
-			return - 1 * $error;
155
-		} else {
156
-			$this->db->commit();
157
-
158
-			return $this->id;
159
-		}
160
-	}
161
-
162
-	/**
163
-	 * Load object in memory from the database
164
-	 *
165
-	 * @param int    $id  Id object
166
-	 * @param string $ref Ref
167
-	 *
168
-	 * @return int <0 if KO, 0 if not found, >0 if OK
169
-	 */
170
-	public function fetch($id, $ref = null)
171
-	{
172
-		dol_syslog(__METHOD__, LOG_DEBUG);
173
-
174
-		$sql = 'SELECT';
175
-		$sql .= ' t.idType,';
125
+        $sql .= ')';
126
+
127
+        $this->db->begin();
128
+
129
+        $resql = $this->db->query($sql);
130
+        if (!$resql) {
131
+            $error ++;
132
+            $this->errors[] = 'Error ' . $this->db->lasterror();
133
+            dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
134
+        }
135
+
136
+        if (!$error) {
137
+            $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX . $this->table_element);
138
+
139
+            if (!$notrigger) {
140
+                // Uncomment this and change MYOBJECT to your own tag if you
141
+                // want this action to call a trigger.
142
+
143
+                //// Call triggers
144
+                //$result=$this->call_trigger('MYOBJECT_CREATE',$user);
145
+                //if ($result < 0) $error++;
146
+                //// End call triggers
147
+            }
148
+        }
149
+
150
+        // Commit or rollback
151
+        if ($error) {
152
+            $this->db->rollback();
153
+
154
+            return - 1 * $error;
155
+        } else {
156
+            $this->db->commit();
157
+
158
+            return $this->id;
159
+        }
160
+    }
161
+
162
+    /**
163
+     * Load object in memory from the database
164
+     *
165
+     * @param int    $id  Id object
166
+     * @param string $ref Ref
167
+     *
168
+     * @return int <0 if KO, 0 if not found, >0 if OK
169
+     */
170
+    public function fetch($id, $ref = null)
171
+    {
172
+        dol_syslog(__METHOD__, LOG_DEBUG);
173
+
174
+        $sql = 'SELECT';
175
+        $sql .= ' t.idType,';
176 176
 		
177
-		$sql .= " t.numero,";
178
-		$sql .= " t.nom,";
179
-		$sql .= " t.active";
177
+        $sql .= " t.numero,";
178
+        $sql .= " t.nom,";
179
+        $sql .= " t.active";
180 180
 
181 181
 		
182
-		$sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element . ' as t';
183
-		if (null !== $ref) {
184
-			$sql .= ' WHERE t.ref = ' . '\'' . $ref . '\'';
185
-		} else {
186
-			$sql .= ' WHERE t.idType = ' . $id;
187
-		}
188
-
189
-		$resql = $this->db->query($sql);
190
-		if ($resql) {
191
-			$numrows = $this->db->num_rows($resql);
192
-			if ($numrows) {
193
-				$obj = $this->db->fetch_object($resql);
194
-
195
-				$this->id = $obj->idType;
182
+        $sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element . ' as t';
183
+        if (null !== $ref) {
184
+            $sql .= ' WHERE t.ref = ' . '\'' . $ref . '\'';
185
+        } else {
186
+            $sql .= ' WHERE t.idType = ' . $id;
187
+        }
188
+
189
+        $resql = $this->db->query($sql);
190
+        if ($resql) {
191
+            $numrows = $this->db->num_rows($resql);
192
+            if ($numrows) {
193
+                $obj = $this->db->fetch_object($resql);
194
+
195
+                $this->id = $obj->idType;
196 196
 				
197
-				$this->idType = $obj->idType;
198
-				$this->numero = $obj->numero;
199
-				$this->nom = $obj->nom;
200
-				$this->active = $obj->active;
197
+                $this->idType = $obj->idType;
198
+                $this->numero = $obj->numero;
199
+                $this->nom = $obj->nom;
200
+                $this->active = $obj->active;
201 201
 
202 202
 				
203
-			}
204
-			$this->db->free($resql);
205
-
206
-			if ($numrows) {
207
-				return 1;
208
-			} else {
209
-				return 0;
210
-			}
211
-		} else {
212
-			$this->errors[] = 'Error ' . $this->db->lasterror();
213
-			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
214
-
215
-			return - 1;
216
-		}
217
-	}
218
-
219
-	/**
220
-	 * Load object in memory from the database
221
-	 *
222
-	 * @param string $sortorder Sort Order
223
-	 * @param string $sortfield Sort field
224
-	 * @param int    $limit     offset limit
225
-	 * @param int    $offset    offset limit
226
-	 * @param array  $filter    filter array
227
-	 * @param string $filtermode filter mode (AND or OR)
228
-	 *
229
-	 * @return int <0 if KO, >0 if OK
230
-	 */
231
-	public function fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, array $filter = array(), $filtermode='AND')
232
-	{
233
-		dol_syslog(__METHOD__, LOG_DEBUG);
234
-
235
-		$sql = 'SELECT';
236
-		$sql .= " t.idType,";
237
-		$sql .= " t.numero,";
238
-		$sql .= " t.nom,";
239
-		$sql .= " t.active";
203
+            }
204
+            $this->db->free($resql);
205
+
206
+            if ($numrows) {
207
+                return 1;
208
+            } else {
209
+                return 0;
210
+            }
211
+        } else {
212
+            $this->errors[] = 'Error ' . $this->db->lasterror();
213
+            dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
214
+
215
+            return - 1;
216
+        }
217
+    }
218
+
219
+    /**
220
+     * Load object in memory from the database
221
+     *
222
+     * @param string $sortorder Sort Order
223
+     * @param string $sortfield Sort field
224
+     * @param int    $limit     offset limit
225
+     * @param int    $offset    offset limit
226
+     * @param array  $filter    filter array
227
+     * @param string $filtermode filter mode (AND or OR)
228
+     *
229
+     * @return int <0 if KO, >0 if OK
230
+     */
231
+    public function fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, array $filter = array(), $filtermode='AND')
232
+    {
233
+        dol_syslog(__METHOD__, LOG_DEBUG);
234
+
235
+        $sql = 'SELECT';
236
+        $sql .= " t.idType,";
237
+        $sql .= " t.numero,";
238
+        $sql .= " t.nom,";
239
+        $sql .= " t.active";
240 240
 
241 241
 		
242
-		$sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element. ' as t';
242
+        $sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element. ' as t';
243 243
 
244
-		// Manage filter
245
-		$sqlwhere = array();
244
+        // Manage filter
245
+        $sqlwhere = array();
246 246
 
247
-		foreach ($filter as $key => $value) {
248
-		    if(is_string($value)){
247
+        foreach ($filter as $key => $value) {
248
+            if(is_string($value)){
249 249
                 $sqlwhere [] = $key . ' LIKE \'%' . $this->db->escape($value) . '%\'';
250 250
                 continue;
251 251
             }
@@ -256,232 +256,232 @@  discard block
 block discarded – undo
256 256
             }
257 257
         }
258 258
 
259
-		if (count($sqlwhere) > 0) {
260
-			$sql .= ' WHERE ' . implode(' '.$filtermode.' ', $sqlwhere);
261
-		}
259
+        if (count($sqlwhere) > 0) {
260
+            $sql .= ' WHERE ' . implode(' '.$filtermode.' ', $sqlwhere);
261
+        }
262 262
 		
263
-		if (!empty($sortfield)) {
264
-			$sql .= $this->db->order($sortfield,$sortorder);
265
-		}
266
-		if (!empty($limit)) {
267
-		 $sql .=  ' ' . $this->db->plimit($limit + 1, $offset);
268
-		}
269
-		$this->lines = array();
270
-
271
-		$resql = $this->db->query($sql);
272
-		if ($resql) {
273
-			$num = $this->db->num_rows($resql);
274
-
275
-			while ($obj = $this->db->fetch_object($resql)) {
276
-				$line = new BbctypesLine();
277
-
278
-				$line->id = $obj->idType;
279
-				$line->idType = $obj->idType;
280
-				$line->numero = $obj->numero;
281
-				$line->nom = $obj->nom;
282
-				$line->active = $obj->active;
283
-
284
-				$this->lines[$line->id] = $line;
285
-			}
286
-			$this->db->free($resql);
287
-
288
-			return $num;
289
-		} else {
290
-			$this->errors[] = 'Error ' . $this->db->lasterror();
291
-			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
292
-
293
-			return - 1;
294
-		}
295
-	}
296
-
297
-	/**
298
-	 * Update object into database
299
-	 *
300
-	 * @param  User $user      User that modifies
301
-	 * @param  bool $notrigger false=launch triggers after, true=disable triggers
302
-	 *
303
-	 * @return int <0 if KO, >0 if OK
304
-	 */
305
-	public function update(User $user, $notrigger = false)
306
-	{
307
-		$error = 0;
308
-
309
-		dol_syslog(__METHOD__, LOG_DEBUG);
310
-
311
-		// Clean parameters
263
+        if (!empty($sortfield)) {
264
+            $sql .= $this->db->order($sortfield,$sortorder);
265
+        }
266
+        if (!empty($limit)) {
267
+            $sql .=  ' ' . $this->db->plimit($limit + 1, $offset);
268
+        }
269
+        $this->lines = array();
270
+
271
+        $resql = $this->db->query($sql);
272
+        if ($resql) {
273
+            $num = $this->db->num_rows($resql);
274
+
275
+            while ($obj = $this->db->fetch_object($resql)) {
276
+                $line = new BbctypesLine();
277
+
278
+                $line->id = $obj->idType;
279
+                $line->idType = $obj->idType;
280
+                $line->numero = $obj->numero;
281
+                $line->nom = $obj->nom;
282
+                $line->active = $obj->active;
283
+
284
+                $this->lines[$line->id] = $line;
285
+            }
286
+            $this->db->free($resql);
287
+
288
+            return $num;
289
+        } else {
290
+            $this->errors[] = 'Error ' . $this->db->lasterror();
291
+            dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
292
+
293
+            return - 1;
294
+        }
295
+    }
296
+
297
+    /**
298
+     * Update object into database
299
+     *
300
+     * @param  User $user      User that modifies
301
+     * @param  bool $notrigger false=launch triggers after, true=disable triggers
302
+     *
303
+     * @return int <0 if KO, >0 if OK
304
+     */
305
+    public function update(User $user, $notrigger = false)
306
+    {
307
+        $error = 0;
308
+
309
+        dol_syslog(__METHOD__, LOG_DEBUG);
310
+
311
+        // Clean parameters
312 312
 		
313
-		if (isset($this->idType)) {
314
-			 $this->idType = trim($this->idType);
315
-		}
316
-		if (isset($this->numero)) {
317
-			 $this->numero = trim($this->numero);
318
-		}
319
-		if (isset($this->nom)) {
320
-			 $this->nom = trim($this->nom);
321
-		}
322
-		if (isset($this->active)) {
323
-			 $this->active = trim($this->active);
324
-		}
313
+        if (isset($this->idType)) {
314
+                $this->idType = trim($this->idType);
315
+        }
316
+        if (isset($this->numero)) {
317
+                $this->numero = trim($this->numero);
318
+        }
319
+        if (isset($this->nom)) {
320
+                $this->nom = trim($this->nom);
321
+        }
322
+        if (isset($this->active)) {
323
+                $this->active = trim($this->active);
324
+        }
325 325
 
326 326
 		
327 327
 
328
-		// Check parameters
329
-		// Put here code to add a control on parameters values
328
+        // Check parameters
329
+        // Put here code to add a control on parameters values
330 330
 
331
-		// Update request
332
-		$sql = 'UPDATE ' . MAIN_DB_PREFIX . $this->table_element . ' SET';
331
+        // Update request
332
+        $sql = 'UPDATE ' . MAIN_DB_PREFIX . $this->table_element . ' SET';
333 333
 		
334
-		$sql .= ' numero = '.(isset($this->numero)?$this->numero:"null").',';
335
-		$sql .= ' nom = '.(isset($this->nom)?"'".$this->db->escape($this->nom)."'":"null").',';
336
-		$sql .= ' active = '.(isset($this->active)?$this->active:"null");
334
+        $sql .= ' numero = '.(isset($this->numero)?$this->numero:"null").',';
335
+        $sql .= ' nom = '.(isset($this->nom)?"'".$this->db->escape($this->nom)."'":"null").',';
336
+        $sql .= ' active = '.(isset($this->active)?$this->active:"null");
337 337
 
338 338
         
339
-		$sql .= ' WHERE idType=' . $this->id;
340
-
341
-		$this->db->begin();
342
-
343
-		$resql = $this->db->query($sql);
344
-		if (!$resql) {
345
-			$error ++;
346
-			$this->errors[] = 'Error ' . $this->db->lasterror();
347
-			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
348
-		}
349
-
350
-		if (!$error && !$notrigger) {
351
-			// Uncomment this and change MYOBJECT to your own tag if you
352
-			// want this action calls a trigger.
353
-
354
-			//// Call triggers
355
-			//$result=$this->call_trigger('MYOBJECT_MODIFY',$user);
356
-			//if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail}
357
-			//// End call triggers
358
-		}
359
-
360
-		// Commit or rollback
361
-		if ($error) {
362
-			$this->db->rollback();
363
-
364
-			return - 1 * $error;
365
-		} else {
366
-			$this->db->commit();
367
-
368
-			return 1;
369
-		}
370
-	}
371
-
372
-	/**
373
-	 * Delete object in database
374
-	 *
375
-	 * @param User $user      User that deletes
376
-	 * @param bool $notrigger false=launch triggers after, true=disable triggers
377
-	 *
378
-	 * @return int <0 if KO, >0 if OK
379
-	 */
380
-	public function delete(User $user, $notrigger = false)
381
-	{
382
-		dol_syslog(__METHOD__, LOG_DEBUG);
383
-
384
-		$error = 0;
385
-
386
-		$this->db->begin();
387
-
388
-		if (!$error) {
389
-			if (!$notrigger) {
390
-				// Uncomment this and change MYOBJECT to your own tag if you
391
-				// want this action calls a trigger.
392
-
393
-				//// Call triggers
394
-				//$result=$this->call_trigger('MYOBJECT_DELETE',$user);
395
-				//if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail}
396
-				//// End call triggers
397
-			}
398
-		}
399
-
400
-		if (!$error) {
401
-			$sql = 'DELETE FROM ' . MAIN_DB_PREFIX . $this->table_element;
402
-			$sql .= ' WHERE idType=' . $this->id;
403
-
404
-			$resql = $this->db->query($sql);
405
-			if (!$resql) {
406
-				$error ++;
407
-				$this->errors[] = 'Error ' . $this->db->lasterror();
408
-				dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
409
-			}
410
-		}
411
-
412
-		// Commit or rollback
413
-		if ($error) {
414
-			$this->db->rollback();
415
-
416
-			return - 1 * $error;
417
-		} else {
418
-			$this->db->commit();
419
-
420
-			return 1;
421
-		}
422
-	}
423
-
424
-	/**
425
-	 * Load an object from its id and create a new one in database
426
-	 *
427
-	 * @param int $fromid Id of object to clone
428
-	 *
429
-	 * @return int New id of clone
430
-	 */
431
-	public function createFromClone($fromid)
432
-	{
433
-		dol_syslog(__METHOD__, LOG_DEBUG);
434
-
435
-		global $user;
436
-		$error = 0;
437
-		$object = new Bbctypes($this->db);
438
-
439
-		$this->db->begin();
440
-
441
-		// Load source object
442
-		$object->fetch($fromid);
443
-		// Reset object
444
-		$object->id = 0;
445
-
446
-		// Clear fields
447
-		// ...
448
-
449
-		// Create clone
450
-		$result = $object->create($user);
451
-
452
-		// Other options
453
-		if ($result < 0) {
454
-			$error ++;
455
-			$this->errors = $object->errors;
456
-			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
457
-		}
458
-
459
-		// End
460
-		if (!$error) {
461
-			$this->db->commit();
462
-
463
-			return $object->id;
464
-		} else {
465
-			$this->db->rollback();
466
-
467
-			return - 1;
468
-		}
469
-	}
470
-
471
-	/**
472
-	 *  Return a link to the user card (with optionaly the picto)
473
-	 * 	Use this->id,this->lastname, this->firstname
474
-	 *
475
-	 *	@param	int		$withpicto			Include picto in link (0=No picto, 1=Include picto into link, 2=Only picto)
476
-	 *	@param	string	$option				On what the link point to
339
+        $sql .= ' WHERE idType=' . $this->id;
340
+
341
+        $this->db->begin();
342
+
343
+        $resql = $this->db->query($sql);
344
+        if (!$resql) {
345
+            $error ++;
346
+            $this->errors[] = 'Error ' . $this->db->lasterror();
347
+            dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
348
+        }
349
+
350
+        if (!$error && !$notrigger) {
351
+            // Uncomment this and change MYOBJECT to your own tag if you
352
+            // want this action calls a trigger.
353
+
354
+            //// Call triggers
355
+            //$result=$this->call_trigger('MYOBJECT_MODIFY',$user);
356
+            //if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail}
357
+            //// End call triggers
358
+        }
359
+
360
+        // Commit or rollback
361
+        if ($error) {
362
+            $this->db->rollback();
363
+
364
+            return - 1 * $error;
365
+        } else {
366
+            $this->db->commit();
367
+
368
+            return 1;
369
+        }
370
+    }
371
+
372
+    /**
373
+     * Delete object in database
374
+     *
375
+     * @param User $user      User that deletes
376
+     * @param bool $notrigger false=launch triggers after, true=disable triggers
377
+     *
378
+     * @return int <0 if KO, >0 if OK
379
+     */
380
+    public function delete(User $user, $notrigger = false)
381
+    {
382
+        dol_syslog(__METHOD__, LOG_DEBUG);
383
+
384
+        $error = 0;
385
+
386
+        $this->db->begin();
387
+
388
+        if (!$error) {
389
+            if (!$notrigger) {
390
+                // Uncomment this and change MYOBJECT to your own tag if you
391
+                // want this action calls a trigger.
392
+
393
+                //// Call triggers
394
+                //$result=$this->call_trigger('MYOBJECT_DELETE',$user);
395
+                //if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail}
396
+                //// End call triggers
397
+            }
398
+        }
399
+
400
+        if (!$error) {
401
+            $sql = 'DELETE FROM ' . MAIN_DB_PREFIX . $this->table_element;
402
+            $sql .= ' WHERE idType=' . $this->id;
403
+
404
+            $resql = $this->db->query($sql);
405
+            if (!$resql) {
406
+                $error ++;
407
+                $this->errors[] = 'Error ' . $this->db->lasterror();
408
+                dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
409
+            }
410
+        }
411
+
412
+        // Commit or rollback
413
+        if ($error) {
414
+            $this->db->rollback();
415
+
416
+            return - 1 * $error;
417
+        } else {
418
+            $this->db->commit();
419
+
420
+            return 1;
421
+        }
422
+    }
423
+
424
+    /**
425
+     * Load an object from its id and create a new one in database
426
+     *
427
+     * @param int $fromid Id of object to clone
428
+     *
429
+     * @return int New id of clone
430
+     */
431
+    public function createFromClone($fromid)
432
+    {
433
+        dol_syslog(__METHOD__, LOG_DEBUG);
434
+
435
+        global $user;
436
+        $error = 0;
437
+        $object = new Bbctypes($this->db);
438
+
439
+        $this->db->begin();
440
+
441
+        // Load source object
442
+        $object->fetch($fromid);
443
+        // Reset object
444
+        $object->id = 0;
445
+
446
+        // Clear fields
447
+        // ...
448
+
449
+        // Create clone
450
+        $result = $object->create($user);
451
+
452
+        // Other options
453
+        if ($result < 0) {
454
+            $error ++;
455
+            $this->errors = $object->errors;
456
+            dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
457
+        }
458
+
459
+        // End
460
+        if (!$error) {
461
+            $this->db->commit();
462
+
463
+            return $object->id;
464
+        } else {
465
+            $this->db->rollback();
466
+
467
+            return - 1;
468
+        }
469
+    }
470
+
471
+    /**
472
+     *  Return a link to the user card (with optionaly the picto)
473
+     * 	Use this->id,this->lastname, this->firstname
474
+     *
475
+     *	@param	int		$withpicto			Include picto in link (0=No picto, 1=Include picto into link, 2=Only picto)
476
+     *	@param	string	$option				On what the link point to
477 477
      *  @param	integer	$notooltip			1=Disable tooltip
478 478
      *  @param	int		$maxlen				Max length of visible user name
479 479
      *  @param  string  $morecss            Add more css on link
480
-	 *	@return	string						String with URL
481
-	 */
482
-	function getNomUrl($withpicto=0, $option='', $notooltip=0, $maxlen=24, $morecss='')
483
-	{
484
-		global $langs, $conf, $db;
480
+     *	@return	string						String with URL
481
+     */
482
+    function getNomUrl($withpicto=0, $option='', $notooltip=0, $maxlen=24, $morecss='')
483
+    {
484
+        global $langs, $conf, $db;
485 485
         global $dolibarr_main_authentication, $dolibarr_main_demo;
486 486
         global $menumanager;
487 487
 
@@ -496,92 +496,92 @@  discard block
 block discarded – undo
496 496
         $link = '<a href="'.DOL_URL_ROOT.'/flightLog/card.php?id='.$this->id.'"';
497 497
         $link.= ($notooltip?'':' title="'.dol_escape_htmltag($label, 1).'" class="classfortooltip'.($morecss?' '.$morecss:'').'"');
498 498
         $link.= '>';
499
-		$linkend='</a>';
499
+        $linkend='</a>';
500 500
 
501 501
         if ($withpicto)
502 502
         {
503 503
             $result.=($link.img_object(($notooltip?'':$label), 'label', ($notooltip?'':'class="classfortooltip"')).$linkend);
504 504
             if ($withpicto != 2) $result.=' ';
505
-		}
506
-		$result.= $link . $this->ref . $linkend;
507
-		return $result;
508
-	}
505
+        }
506
+        $result.= $link . $this->ref . $linkend;
507
+        return $result;
508
+    }
509 509
 	
510
-	/**
511
-	 *  Retourne le libelle du status d'un user (actif, inactif)
512
-	 *
513
-	 *  @param	int		$mode          0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto
514
-	 *  @return	string 			       Label of status
515
-	 */
516
-	function getLibStatut($mode=0)
517
-	{
518
-		return $this->LibStatut($this->status,$mode);
519
-	}
520
-
521
-	/**
522
-	 *  Renvoi le libelle d'un status donne
523
-	 *
524
-	 *  @param	int		$status        	Id status
525
-	 *  @param  int		$mode          	0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto
526
-	 *  @return string 			       	Label of status
527
-	 */
528
-	function LibStatut($status,$mode=0)
529
-	{
530
-		global $langs;
531
-
532
-		if ($mode == 0)
533
-		{
534
-			$prefix='';
535
-			if ($status == 1) return $langs->trans('Enabled');
536
-			if ($status == 0) return $langs->trans('Disabled');
537
-		}
538
-		if ($mode == 1)
539
-		{
540
-			if ($status == 1) return $langs->trans('Enabled');
541
-			if ($status == 0) return $langs->trans('Disabled');
542
-		}
543
-		if ($mode == 2)
544
-		{
545
-			if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled');
546
-			if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled');
547
-		}
548
-		if ($mode == 3)
549
-		{
550
-			if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4');
551
-			if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5');
552
-		}
553
-		if ($mode == 4)
554
-		{
555
-			if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled');
556
-			if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled');
557
-		}
558
-		if ($mode == 5)
559
-		{
560
-			if ($status == 1) return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4');
561
-			if ($status == 0) return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5');
562
-		}
563
-
564
-		return "";
565
-	}
510
+    /**
511
+     *  Retourne le libelle du status d'un user (actif, inactif)
512
+     *
513
+     *  @param	int		$mode          0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto
514
+     *  @return	string 			       Label of status
515
+     */
516
+    function getLibStatut($mode=0)
517
+    {
518
+        return $this->LibStatut($this->status,$mode);
519
+    }
520
+
521
+    /**
522
+     *  Renvoi le libelle d'un status donne
523
+     *
524
+     *  @param	int		$status        	Id status
525
+     *  @param  int		$mode          	0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto
526
+     *  @return string 			       	Label of status
527
+     */
528
+    function LibStatut($status,$mode=0)
529
+    {
530
+        global $langs;
531
+
532
+        if ($mode == 0)
533
+        {
534
+            $prefix='';
535
+            if ($status == 1) return $langs->trans('Enabled');
536
+            if ($status == 0) return $langs->trans('Disabled');
537
+        }
538
+        if ($mode == 1)
539
+        {
540
+            if ($status == 1) return $langs->trans('Enabled');
541
+            if ($status == 0) return $langs->trans('Disabled');
542
+        }
543
+        if ($mode == 2)
544
+        {
545
+            if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled');
546
+            if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled');
547
+        }
548
+        if ($mode == 3)
549
+        {
550
+            if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4');
551
+            if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5');
552
+        }
553
+        if ($mode == 4)
554
+        {
555
+            if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled');
556
+            if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled');
557
+        }
558
+        if ($mode == 5)
559
+        {
560
+            if ($status == 1) return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4');
561
+            if ($status == 0) return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5');
562
+        }
563
+
564
+        return "";
565
+    }
566 566
 	
567 567
 	
568
-	/**
569
-	 * Initialise object with example values
570
-	 * Id must be 0 if object instance is a specimen
571
-	 *
572
-	 * @return void
573
-	 */
574
-	public function initAsSpecimen()
575
-	{
576
-		$this->id = 0;
568
+    /**
569
+     * Initialise object with example values
570
+     * Id must be 0 if object instance is a specimen
571
+     *
572
+     * @return void
573
+     */
574
+    public function initAsSpecimen()
575
+    {
576
+        $this->id = 0;
577 577
 		
578
-		$this->idType = '';
579
-		$this->numero = '';
580
-		$this->nom = '';
581
-		$this->active = '';
578
+        $this->idType = '';
579
+        $this->numero = '';
580
+        $this->nom = '';
581
+        $this->active = '';
582 582
 
583 583
 		
584
-	}
584
+    }
585 585
 
586 586
 }
587 587
 
@@ -590,21 +590,21 @@  discard block
 block discarded – undo
590 590
  */
591 591
 class BbctypesLine
592 592
 {
593
-	/**
594
-	 * @var int ID
595
-	 */
596
-	public $id;
597
-	/**
598
-	 * @var mixed Sample line property 1
599
-	 */
593
+    /**
594
+     * @var int ID
595
+     */
596
+    public $id;
597
+    /**
598
+     * @var mixed Sample line property 1
599
+     */
600 600
 	
601
-	public $idType;
602
-	public $numero;
603
-	public $nom;
604
-	public $active;
605
-
606
-	/**
607
-	 * @var mixed Sample line property 2
608
-	 */
601
+    public $idType;
602
+    public $numero;
603
+    public $nom;
604
+    public $active;
605
+
606
+    /**
607
+     * @var mixed Sample line property 2
608
+     */
609 609
 	
610 610
 }
Please login to merge, or discard this patch.
Spacing   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -110,16 +110,16 @@  discard block
 block discarded – undo
110 110
 		// Insert request
111 111
 		$sql = 'INSERT INTO ' . MAIN_DB_PREFIX . $this->table_element . '(';
112 112
 		
113
-		$sql.= 'numero,';
114
-		$sql.= 'nom';
115
-		$sql.= 'active';
113
+		$sql .= 'numero,';
114
+		$sql .= 'nom';
115
+		$sql .= 'active';
116 116
 
117 117
 		
118 118
 		$sql .= ') VALUES (';
119 119
 		
120
-		$sql .= ' '.(! isset($this->numero)?'NULL':$this->numero).',';
121
-		$sql .= ' '.(! isset($this->nom)?'NULL':"'".$this->db->escape($this->nom)."'").',';
122
-		$sql .= ' '.(! isset($this->active)?'NULL':$this->active);
120
+		$sql .= ' ' . (!isset($this->numero) ? 'NULL' : $this->numero) . ',';
121
+		$sql .= ' ' . (!isset($this->nom) ? 'NULL' : "'" . $this->db->escape($this->nom) . "'") . ',';
122
+		$sql .= ' ' . (!isset($this->active) ? 'NULL' : $this->active);
123 123
 
124 124
 		
125 125
 		$sql .= ')';
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 
129 129
 		$resql = $this->db->query($sql);
130 130
 		if (!$resql) {
131
-			$error ++;
131
+			$error++;
132 132
 			$this->errors[] = 'Error ' . $this->db->lasterror();
133 133
 			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
134 134
 		}
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
 		if ($error) {
152 152
 			$this->db->rollback();
153 153
 
154
-			return - 1 * $error;
154
+			return -1 * $error;
155 155
 		} else {
156 156
 			$this->db->commit();
157 157
 
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
 			$this->errors[] = 'Error ' . $this->db->lasterror();
213 213
 			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
214 214
 
215
-			return - 1;
215
+			return -1;
216 216
 		}
217 217
 	}
218 218
 
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
 	 *
229 229
 	 * @return int <0 if KO, >0 if OK
230 230
 	 */
231
-	public function fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, array $filter = array(), $filtermode='AND')
231
+	public function fetchAll($sortorder = '', $sortfield = '', $limit = 0, $offset = 0, array $filter = array(), $filtermode = 'AND')
232 232
 	{
233 233
 		dol_syslog(__METHOD__, LOG_DEBUG);
234 234
 
@@ -239,32 +239,32 @@  discard block
 block discarded – undo
239 239
 		$sql .= " t.active";
240 240
 
241 241
 		
242
-		$sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element. ' as t';
242
+		$sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element . ' as t';
243 243
 
244 244
 		// Manage filter
245 245
 		$sqlwhere = array();
246 246
 
247 247
 		foreach ($filter as $key => $value) {
248
-		    if(is_string($value)){
248
+		    if (is_string($value)) {
249 249
                 $sqlwhere [] = $key . ' LIKE \'%' . $this->db->escape($value) . '%\'';
250 250
                 continue;
251 251
             }
252 252
 
253
-            if(is_int($value)){
254
-                $sqlwhere [] = $key . ' = ' .(int)$value;
253
+            if (is_int($value)) {
254
+                $sqlwhere [] = $key . ' = ' . (int) $value;
255 255
                 continue;
256 256
             }
257 257
         }
258 258
 
259 259
 		if (count($sqlwhere) > 0) {
260
-			$sql .= ' WHERE ' . implode(' '.$filtermode.' ', $sqlwhere);
260
+			$sql .= ' WHERE ' . implode(' ' . $filtermode . ' ', $sqlwhere);
261 261
 		}
262 262
 		
263 263
 		if (!empty($sortfield)) {
264
-			$sql .= $this->db->order($sortfield,$sortorder);
264
+			$sql .= $this->db->order($sortfield, $sortorder);
265 265
 		}
266 266
 		if (!empty($limit)) {
267
-		 $sql .=  ' ' . $this->db->plimit($limit + 1, $offset);
267
+		 $sql .= ' ' . $this->db->plimit($limit + 1, $offset);
268 268
 		}
269 269
 		$this->lines = array();
270 270
 
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
 			$this->errors[] = 'Error ' . $this->db->lasterror();
291 291
 			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
292 292
 
293
-			return - 1;
293
+			return -1;
294 294
 		}
295 295
 	}
296 296
 
@@ -331,9 +331,9 @@  discard block
 block discarded – undo
331 331
 		// Update request
332 332
 		$sql = 'UPDATE ' . MAIN_DB_PREFIX . $this->table_element . ' SET';
333 333
 		
334
-		$sql .= ' numero = '.(isset($this->numero)?$this->numero:"null").',';
335
-		$sql .= ' nom = '.(isset($this->nom)?"'".$this->db->escape($this->nom)."'":"null").',';
336
-		$sql .= ' active = '.(isset($this->active)?$this->active:"null");
334
+		$sql .= ' numero = ' . (isset($this->numero) ? $this->numero : "null") . ',';
335
+		$sql .= ' nom = ' . (isset($this->nom) ? "'" . $this->db->escape($this->nom) . "'" : "null") . ',';
336
+		$sql .= ' active = ' . (isset($this->active) ? $this->active : "null");
337 337
 
338 338
         
339 339
 		$sql .= ' WHERE idType=' . $this->id;
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
 
343 343
 		$resql = $this->db->query($sql);
344 344
 		if (!$resql) {
345
-			$error ++;
345
+			$error++;
346 346
 			$this->errors[] = 'Error ' . $this->db->lasterror();
347 347
 			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
348 348
 		}
@@ -361,7 +361,7 @@  discard block
 block discarded – undo
361 361
 		if ($error) {
362 362
 			$this->db->rollback();
363 363
 
364
-			return - 1 * $error;
364
+			return -1 * $error;
365 365
 		} else {
366 366
 			$this->db->commit();
367 367
 
@@ -403,7 +403,7 @@  discard block
 block discarded – undo
403 403
 
404 404
 			$resql = $this->db->query($sql);
405 405
 			if (!$resql) {
406
-				$error ++;
406
+				$error++;
407 407
 				$this->errors[] = 'Error ' . $this->db->lasterror();
408 408
 				dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
409 409
 			}
@@ -413,7 +413,7 @@  discard block
 block discarded – undo
413 413
 		if ($error) {
414 414
 			$this->db->rollback();
415 415
 
416
-			return - 1 * $error;
416
+			return -1 * $error;
417 417
 		} else {
418 418
 			$this->db->commit();
419 419
 
@@ -451,7 +451,7 @@  discard block
 block discarded – undo
451 451
 
452 452
 		// Other options
453 453
 		if ($result < 0) {
454
-			$error ++;
454
+			$error++;
455 455
 			$this->errors = $object->errors;
456 456
 			dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
457 457
 		}
@@ -464,7 +464,7 @@  discard block
 block discarded – undo
464 464
 		} else {
465 465
 			$this->db->rollback();
466 466
 
467
-			return - 1;
467
+			return -1;
468 468
 		}
469 469
 	}
470 470
 
@@ -479,7 +479,7 @@  discard block
 block discarded – undo
479 479
      *  @param  string  $morecss            Add more css on link
480 480
 	 *	@return	string						String with URL
481 481
 	 */
482
-	function getNomUrl($withpicto=0, $option='', $notooltip=0, $maxlen=24, $morecss='')
482
+	function getNomUrl($withpicto = 0, $option = '', $notooltip = 0, $maxlen = 24, $morecss = '')
483 483
 	{
484 484
 		global $langs, $conf, $db;
485 485
         global $dolibarr_main_authentication, $dolibarr_main_demo;
@@ -490,20 +490,20 @@  discard block
 block discarded – undo
490 490
         $companylink = '';
491 491
 
492 492
         $label = '<u>' . $langs->trans("MyModule") . '</u>';
493
-        $label.= '<div width="100%">';
494
-        $label.= '<b>' . $langs->trans('Ref') . ':</b> ' . $this->ref;
493
+        $label .= '<div width="100%">';
494
+        $label .= '<b>' . $langs->trans('Ref') . ':</b> ' . $this->ref;
495 495
 
496
-        $link = '<a href="'.DOL_URL_ROOT.'/flightLog/card.php?id='.$this->id.'"';
497
-        $link.= ($notooltip?'':' title="'.dol_escape_htmltag($label, 1).'" class="classfortooltip'.($morecss?' '.$morecss:'').'"');
498
-        $link.= '>';
499
-		$linkend='</a>';
496
+        $link = '<a href="' . DOL_URL_ROOT . '/flightLog/card.php?id=' . $this->id . '"';
497
+        $link .= ($notooltip ? '' : ' title="' . dol_escape_htmltag($label, 1) . '" class="classfortooltip' . ($morecss ? ' ' . $morecss : '') . '"');
498
+        $link .= '>';
499
+		$linkend = '</a>';
500 500
 
501 501
         if ($withpicto)
502 502
         {
503
-            $result.=($link.img_object(($notooltip?'':$label), 'label', ($notooltip?'':'class="classfortooltip"')).$linkend);
504
-            if ($withpicto != 2) $result.=' ';
503
+            $result .= ($link . img_object(($notooltip ? '' : $label), 'label', ($notooltip ? '' : 'class="classfortooltip"')) . $linkend);
504
+            if ($withpicto != 2) $result .= ' ';
505 505
 		}
506
-		$result.= $link . $this->ref . $linkend;
506
+		$result .= $link . $this->ref . $linkend;
507 507
 		return $result;
508 508
 	}
509 509
 	
@@ -513,9 +513,9 @@  discard block
 block discarded – undo
513 513
 	 *  @param	int		$mode          0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto
514 514
 	 *  @return	string 			       Label of status
515 515
 	 */
516
-	function getLibStatut($mode=0)
516
+	function getLibStatut($mode = 0)
517 517
 	{
518
-		return $this->LibStatut($this->status,$mode);
518
+		return $this->LibStatut($this->status, $mode);
519 519
 	}
520 520
 
521 521
 	/**
@@ -525,13 +525,13 @@  discard block
 block discarded – undo
525 525
 	 *  @param  int		$mode          	0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto
526 526
 	 *  @return string 			       	Label of status
527 527
 	 */
528
-	function LibStatut($status,$mode=0)
528
+	function LibStatut($status, $mode = 0)
529 529
 	{
530 530
 		global $langs;
531 531
 
532 532
 		if ($mode == 0)
533 533
 		{
534
-			$prefix='';
534
+			$prefix = '';
535 535
 			if ($status == 1) return $langs->trans('Enabled');
536 536
 			if ($status == 0) return $langs->trans('Disabled');
537 537
 		}
@@ -542,23 +542,23 @@  discard block
 block discarded – undo
542 542
 		}
543 543
 		if ($mode == 2)
544 544
 		{
545
-			if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled');
546
-			if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled');
545
+			if ($status == 1) return img_picto($langs->trans('Enabled'), 'statut4') . ' ' . $langs->trans('Enabled');
546
+			if ($status == 0) return img_picto($langs->trans('Disabled'), 'statut5') . ' ' . $langs->trans('Disabled');
547 547
 		}
548 548
 		if ($mode == 3)
549 549
 		{
550
-			if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4');
551
-			if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5');
550
+			if ($status == 1) return img_picto($langs->trans('Enabled'), 'statut4');
551
+			if ($status == 0) return img_picto($langs->trans('Disabled'), 'statut5');
552 552
 		}
553 553
 		if ($mode == 4)
554 554
 		{
555
-			if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled');
556
-			if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled');
555
+			if ($status == 1) return img_picto($langs->trans('Enabled'), 'statut4') . ' ' . $langs->trans('Enabled');
556
+			if ($status == 0) return img_picto($langs->trans('Disabled'), 'statut5') . ' ' . $langs->trans('Disabled');
557 557
 		}
558 558
 		if ($mode == 5)
559 559
 		{
560
-			if ($status == 1) return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4');
561
-			if ($status == 0) return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5');
560
+			if ($status == 1) return $langs->trans('Enabled') . ' ' . img_picto($langs->trans('Enabled'), 'statut4');
561
+			if ($status == 0) return $langs->trans('Disabled') . ' ' . img_picto($langs->trans('Disabled'), 'statut5');
562 562
 		}
563 563
 
564 564
 		return "";
Please login to merge, or discard this patch.
Braces   +39 added lines, -13 removed lines patch added patch discarded remove patch
@@ -501,7 +501,9 @@  discard block
 block discarded – undo
501 501
         if ($withpicto)
502 502
         {
503 503
             $result.=($link.img_object(($notooltip?'':$label), 'label', ($notooltip?'':'class="classfortooltip"')).$linkend);
504
-            if ($withpicto != 2) $result.=' ';
504
+            if ($withpicto != 2) {
505
+                $result.=' ';
506
+            }
505 507
 		}
506 508
 		$result.= $link . $this->ref . $linkend;
507 509
 		return $result;
@@ -532,33 +534,57 @@  discard block
 block discarded – undo
532 534
 		if ($mode == 0)
533 535
 		{
534 536
 			$prefix='';
535
-			if ($status == 1) return $langs->trans('Enabled');
536
-			if ($status == 0) return $langs->trans('Disabled');
537
+			if ($status == 1) {
538
+			    return $langs->trans('Enabled');
539
+			}
540
+			if ($status == 0) {
541
+			    return $langs->trans('Disabled');
542
+			}
537 543
 		}
538 544
 		if ($mode == 1)
539 545
 		{
540
-			if ($status == 1) return $langs->trans('Enabled');
541
-			if ($status == 0) return $langs->trans('Disabled');
546
+			if ($status == 1) {
547
+			    return $langs->trans('Enabled');
548
+			}
549
+			if ($status == 0) {
550
+			    return $langs->trans('Disabled');
551
+			}
542 552
 		}
543 553
 		if ($mode == 2)
544 554
 		{
545
-			if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled');
546
-			if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled');
555
+			if ($status == 1) {
556
+			    return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled');
557
+			}
558
+			if ($status == 0) {
559
+			    return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled');
560
+			}
547 561
 		}
548 562
 		if ($mode == 3)
549 563
 		{
550
-			if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4');
551
-			if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5');
564
+			if ($status == 1) {
565
+			    return img_picto($langs->trans('Enabled'),'statut4');
566
+			}
567
+			if ($status == 0) {
568
+			    return img_picto($langs->trans('Disabled'),'statut5');
569
+			}
552 570
 		}
553 571
 		if ($mode == 4)
554 572
 		{
555
-			if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled');
556
-			if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled');
573
+			if ($status == 1) {
574
+			    return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled');
575
+			}
576
+			if ($status == 0) {
577
+			    return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled');
578
+			}
557 579
 		}
558 580
 		if ($mode == 5)
559 581
 		{
560
-			if ($status == 1) return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4');
561
-			if ($status == 0) return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5');
582
+			if ($status == 1) {
583
+			    return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4');
584
+			}
585
+			if ($status == 0) {
586
+			    return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5');
587
+			}
562 588
 		}
563 589
 
564 590
 		return "";
Please login to merge, or discard this patch.