Definition

ec_receipt_alloc_invoke()
ecommerce-5--4/ec_receipt/ec_receipt.module, line 955

Code

<?php
function ec_receipt_alloc_invoke() {
  $args = func_get_args();
  $atype = array_shift($args);
  $hook = array_shift($args);
  $function = ec_receipt_get_atypes('module', $atype) .'_alloc_'. $hook;
  if (function_exists($function)) {
    return call_user_func_array($function, $args);
  }
}
?>