getUdAmount($myCrowdfunding->getStartDate()))); if (isset($_GET['min_comment_length'])) { $myCrowdfunding->setFilterMinCommentLength($_GET['min_comment_length']); } else { $myCrowdfunding->setFilterMinCommentLength(DEFAULT_FILTER_MIN_COMMENT_LENGTH); } if (isset($_GET['min_donation_amount'])) { $myCrowdfunding->setFilterMinDonation($_GET['min_donation_amount']); } else { $myCrowdfunding->setFilterMinDonation(DEFAULT_FILTER_MIN_DONATION); } $donationsList = array_reverse($myCrowdfunding->getDonationsList()); if (empty($donationsList)) { echo '

' . _('Pas encore de citation.') . '

'; } else { foreach ($donationsList as $t) { echo '
'; echo $t->getComment(); echo ' '. $myCrowdfunding->getDonorCesiumPlusProfile($t->getDonorPubkey())->getName() .'
'; } }