Code Duplication    Length = 8-8 lines in 3 locations

class/bbcvols.class.php 3 locations

@@ 723-730 (lines=8) @@
720
                return $billNotDone;
721
            }
722
        }
723
        if ($mode == 2) {
724
            if ($status == 1) {
725
                return img_picto($billDone, 'statut4') . ' ' . $billDone;
726
            }
727
            if ($status == 0) {
728
                return img_picto($billNotDone, 'statut5') . ' ' . $billNotDone;
729
            }
730
        }
731
        if ($mode == 3) {
732
            if ($status == 1) {
733
                return img_picto($billDone, 'statut4');
@@ 739-746 (lines=8) @@
736
                return img_picto($billNotDone, 'statut5');
737
            }
738
        }
739
        if ($mode == 4) {
740
            if ($status == 1) {
741
                return img_picto($billDone, 'statut4') . ' ' . $billDone;
742
            }
743
            if ($status == 0) {
744
                return img_picto($billNotDone, 'statut5') . ' ' . $billNotDone;
745
            }
746
        }
747
        if ($mode == 5) {
748
            if ($status == 1) {
749
                return $billDone . ' ' . img_picto($billDone, 'statut4');
@@ 747-754 (lines=8) @@
744
                return img_picto($billNotDone, 'statut5') . ' ' . $billNotDone;
745
            }
746
        }
747
        if ($mode == 5) {
748
            if ($status == 1) {
749
                return $billDone . ' ' . img_picto($billDone, 'statut4');
750
            }
751
            if ($status == 0) {
752
                return $billNotDone . ' ' . img_picto($billNotDone, 'statut5');
753
            }
754
        }
755
756
        return "";
757
    }