' . $myCrowdfunding->getDonorsNb() . '

'; break; case 'amountCollected': echo '

' . $myCrowdfunding->getAmountCollected() . ' ' . $myCrowdfunding->printUnit() . '

'; break; case 'donorsList': $donationsList = $myCrowdfunding->getDonationsList(); $min = $myCrowdfunding->getMinDonation(); $max = $myCrowdfunding->getMaxDonation(); if (empty($donationsList)) { echo _('Pas encore de donateurs'); } else { echo ''; } break; case 'donationsTable': $donationsList = $myCrowdfunding->getDonationsList(); if (empty($donationsList)) { echo _('Pas encore de dons'); } else { echo ''; foreach ($donationsList as $t) { echo ' '; } } echo '
Clef Commentaire Montant
'. substr($t['donor'], 0, 8) . ' '; if (!empty($t['comment'])) { echo ''. $t['comment'] .''; } echo ' ' . ceil($t['amount']) . ' '. $myCrowdfunding->printUnit() . '
'; break; case 'daysLeft': break; } ?>