You are here

function uc_ups_theme in Ubercart 6.2

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

Implements hook_theme().

File

shipping/uc_ups/uc_ups.module, line 86
Shipping quote module that interfaces with www.ups.com to get rates for small package shipments.

Code

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