You are here

function uc_ups_theme in Ubercart 7.3

Same name and namespace in other branches
  1. 8.4 shipping/uc_ups/uc_ups.module \uc_ups_theme()
  2. 6.2 shipping/uc_ups/uc_ups.module \uc_ups_theme()

Implements hook_theme().

File

shipping/uc_ups/uc_ups.module, line 71
UPS shipping quote module.

Code

function uc_ups_theme() {
  return array(
    'uc_ups_option_label' => array(
      'variables' => array(
        'service' => NULL,
        'packages' => NULL,
      ),
      'file' => 'uc_ups.theme.inc',
    ),
    'uc_ups_confirm_shipment' => array(
      'render element' => 'form',
      'file' => 'uc_ups.ship.inc',
    ),
    'uc_ups_label_image' => array(
      'variables' => array(),
      'file' => 'uc_ups.ship.inc',
    ),
  );
}