hook_uc_order_pane_alter

  1. drupal
    1. 7 uc_order.api.php function
Drupal 7 hook_uc_order_pane_alter(&$panes)

Alter order pane definitions.

Parameters

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

Related topics

1 invocation of hook_uc_order_pane_alter()

File

sites/all/modules/ubercart/uc_order/uc_order.api.php, line 308
Hooks provided by the Order module.

Code

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