You are here

function commerce_cp_discount_info_pane in Commerce Cart Pane 7

Discount info cart pane callback

1 string reference to 'commerce_cp_discount_info_pane'
hook_commerce_cp_info in ./commerce_cp.api.php
Defines cart panes available for use on cart page.

File

./commerce_cp.api.php, line 102
This file contains no working PHP code; it exists to document hooks in the standard Drupal manner.

Code

function commerce_cp_discount_info_pane($form, $form_state, $cart_order, $pane_weight) {
  $form_pane = array();
  $form_pane['discount_info'] = array(
    '#markup' => t('Discount message'),
    '#weight' => $pane_weight,
    '#prefix' => '<div id="discount-info">',
    '#suffix' => '</div>',
  );
  return $form_pane;
}