You are here

function uc_extra_fields_pane_order_pane in Extra Fields Checkout Pane 6

Same name and namespace in other branches
  1. 6.2 uc_extra_fields_pane.module \uc_extra_fields_pane_order_pane()

File

./uc_extra_fields_pane.module, line 556

Code

function uc_extra_fields_pane_order_pane() {
  $panes[] = array(
    'id' => 'extra_fields',
    'callback' => 'uc_extra_fields_pane_order_handler',
    'title' => t('Additional information'),
    'desc' => t('Additional information'),
    'class' => 'pos-left',
    'weight' => 1,
    'show' => array(
      'view',
      'edit',
      'customer',
    ),
  );
  return $panes;
}