You are here

function uc_discounts_checkout_pane_alter in Ubercart Discounts (Alternative) 6.2

Implementation of hook_checkout_pane_alter() Get discounted price to show up on checkout, & review

File

uc_discounts/uc_discounts.module, line 724

Code

function uc_discounts_checkout_pane_alter(&$panes) {
  foreach ($panes as &$pane) {
    if ($pane['id'] == 'cart') {
      $pane['callback'] = 'uc_discounts_checkout_pane_content';
    }
  }
}