hook_alloc_get_currency($txn)
ecommerce-5--4/docs/developer/hooks/ec_receipt.php, line 303
The allocation object provider returns currency. Eg. store returns the currency of the transaction object.
| Name | Description |
|---|---|
| Hooks | Allow modules to interact with the Drupal core. |
<?php
function hook_alloc_get_currency($txn) {
return $txn->currency;
}
?>