You are here

function _call_order_pane_byref in Ubercart 6.2

Same name and namespace in other branches
  1. 5 uc_order/uc_order_order_pane.inc \_call_order_pane_byref()

Calls an order pane function with the argument passed by reference.

1 call to _call_order_pane_byref()
theme_uc_order_edit_form in uc_order/uc_order.admin.inc
Formats the uc_order_edit_form().

File

uc_order/uc_order.order_pane.inc, line 1113
This file contains the callbacks for the default order panes supplied with Ubercart and their corresponding helper functions.

Code

function _call_order_pane_byref($func, $op, &$form) {
  return $func($op, $form);
}