hook_alloc_get_total($txn)
ecommerce-5--4/docs/developer/hooks/ec_receipt.php, line 239
Return the total amount for an allocation object. Eg. store returns the total for a transaction.
| Name | Description |
|---|---|
| Hooks | Allow modules to interact with the Drupal core. |
<?php
function hook_alloc_get_total($txn) {
return store_transaction_calc_gross($txn);
}
?>