You are here

function uc_discounts_checkout_pane in Ubercart Discounts (Alternative) 6.2

Implementation of hook_checkout_pane().

See also

hook_checkout_pane()

File

uc_discounts/uc_discounts.module, line 502

Code

function uc_discounts_checkout_pane() {
  $panes[] = array(
    "id" => "uc_discounts",
    "callback" => "uc_checkout_pane_discounts",
    'process' => TRUE,
    "title" => t("Enter discount codes"),
    "weight" => 5,
  );
  return $panes;
}