hook_alloc_get_total

Definition

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

Description

Return the total amount for an allocation object. Eg. store returns the total for a transaction.

Related topics

Namesort iconDescription
HooksAllow modules to interact with the Drupal core.

Code

<?php
function hook_alloc_get_total($txn) {
  return store_transaction_calc_gross($txn);
}
?>