You are here

function uc_quote_theme in Ubercart 8.4

Same name and namespace in other branches
  1. 6.2 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 24
The controller module for fulfillment modules that process physical goods.

Code

function uc_quote_theme() {
  return [
    'uc_cart_pane_quotes' => [
      'render element' => 'form',
      'file' => 'uc_quote.theme.inc',
      'function' => 'theme_uc_cart_pane_quotes',
    ],
    'uc_quote_returned_rates' => [
      'render element' => 'form',
      'file' => 'uc_quote.theme.inc',
      'function' => 'theme_uc_quote_returned_rates',
    ],
  ];
}