hook_alloc_get_currency

Definition

hook_alloc_get_currency($txn)
ecommerce-5--4/docs/developer/hooks/ec_receipt.php, line 303

Description

The allocation object provider returns currency. Eg. store returns the currency of the transaction object.

Related topics

Namesort iconDescription
HooksAllow modules to interact with the Drupal core.

Code

<?php
function hook_alloc_get_currency($txn) {
  return $txn->currency;
}
?>