mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 07:10:29 -04:00
9 lines
490 B
PHP
9 lines
490 B
PHP
Name: <? if($patron->User->Name === null){ ?>Anonymous <? }else{ ?><?= Formatter::EscapeHtml($patron->User->Name) ?><? if($patron->IsAnonymous){ ?> (Anonymous)<? } ?><? } ?>
|
|
|
|
Donation type: <? if($payment->IsRecurring){ ?>Recurring<? }else{ ?>One-time<? } ?>
|
|
|
|
Donation amount: <?= Formatter::EscapeHtml(number_format($payment->Amount, 2)) ?>
|
|
|
|
Donation fee: <?= Formatter::EscapeHtml(number_format($payment->Fee, 2)) ?>
|
|
|
|
Transaction ID: <?= Formatter::EscapeHtml($payment->TransactionId) ?>
|