You are here

function uc_quote_theme in Ubercart 6.2

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

Implements hook_theme().

File

shipping/uc_quote/uc_quote.module, line 91
The controller module for fulfillment modules that process physical goods.

Code

function uc_quote_theme() {
  return array(
    'uc_quote_method_settings' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'uc_quote.admin.inc',
    ),
    'uc_cart_pane_quotes' => array(
      'arguments' => array(
        'items' => NULL,
      ),
    ),
  );
}