Lists all donors, their donation setting and total donated amount. This will allow people to see who is contributing to the pool. Fixes #223
12 lines
247 B
PHP
12 lines
247 B
PHP
<?php
|
|
|
|
// Make sure we are called from index.php
|
|
if (!defined('SECURITY')) die('Hacking attempt');
|
|
|
|
$aDonors = $transaction->getDonations();
|
|
|
|
// Tempalte specifics
|
|
$smarty->assign("DONORS", $aDonors);
|
|
$smarty->assign("CONTENT", "default.tpl");
|
|
?>
|