You are here

function uc_discounts_cart_pane in Ubercart Discounts (Alternative) 6.2

Implementation of hook_cart_pane().

See also

hook_cart_pane()

File

uc_discounts/uc_discounts.module, line 429

Code

function uc_discounts_cart_pane($items) {
  $panes[] = array(
    'id' => 'uc_discounts_pane',
    'title' => t('Discounts'),
    'enabled' => TRUE,
    'weight' => 1,
    'body' => !is_null($items) ? uc_discounts_cart_pane_output($items) : '',
  );
  return $panes;
}