You are here

function hook_uc_order_pane_alter in Ubercart 7.3

Same name and namespace in other branches
  1. 8.4 uc_order/uc_order.api.php \hook_uc_order_pane_alter()

Alter order pane definitions.

Parameters

$panes: Array with the panes information as defined in hook_uc_order_pane(), passed by reference.

1 invocation of hook_uc_order_pane_alter()
_uc_order_pane_list in uc_order/uc_order.order_pane.inc
Builds a list of order panes defined in the enabled modules.

File

uc_order/uc_order.api.php, line 321
Hooks provided by the Order module.

Code

function hook_uc_order_pane_alter(&$panes) {
  $panes['payment']['callback'] = 'my_custom_module_callback';
}