hook_uc_checkout_pane_alter

  1. drupal
    1. 7 uc_cart.api.php function
Drupal 7 hook_uc_checkout_pane_alter(&$panes)

Alters checkout pane definitions.

Parameters

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

Related topics

1 invocation of hook_uc_checkout_pane_alter()

File

sites/all/modules/ubercart/uc_cart/uc_cart.api.php, line 382
Hooks provided by the Cart module.

Code

function hook_uc_checkout_pane_alter(&$panes) {
  $panes['cart']['callback'] = 'my_custom_module_callback';
}