Code Duplication    Length = 8-8 lines in 3 locations

class/bbcvols.class.php 3 locations

@@ 730-737 (lines=8) @@
727
                return $billNotDone;
728
            }
729
        }
730
        if ($mode == 2) {
731
            if ($status == 1) {
732
                return img_picto($billDone, 'statut4') . ' ' . $billDone;
733
            }
734
            if ($status == 0) {
735
                return img_picto($billNotDone, 'statut5') . ' ' . $billNotDone;
736
            }
737
        }
738
        if ($mode == 3) {
739
            if ($status == 1) {
740
                return img_picto($billDone, 'statut4');
@@ 746-753 (lines=8) @@
743
                return img_picto($billNotDone, 'statut5');
744
            }
745
        }
746
        if ($mode == 4) {
747
            if ($status == 1) {
748
                return img_picto($billDone, 'statut4') . ' ' . $billDone;
749
            }
750
            if ($status == 0) {
751
                return img_picto($billNotDone, 'statut5') . ' ' . $billNotDone;
752
            }
753
        }
754
        if ($mode == 5) {
755
            if ($status == 1) {
756
                return $billDone . ' ' . img_picto($billDone, 'statut4');
@@ 754-761 (lines=8) @@
751
                return img_picto($billNotDone, 'statut5') . ' ' . $billNotDone;
752
            }
753
        }
754
        if ($mode == 5) {
755
            if ($status == 1) {
756
                return $billDone . ' ' . img_picto($billDone, 'statut4');
757
            }
758
            if ($status == 0) {
759
                return $billNotDone . ' ' . img_picto($billNotDone, 'statut5');
760
            }
761
        }
762
763
        return "";
764
    }