You are here

function uc_global_quote_theme in Ubercart Global Quote 7

Same name and namespace in other branches
  1. 6 uc_global_quote.module \uc_global_quote_theme()

Implementation of hook_theme().

File

./uc_global_quote.module, line 84
Shipping quote module that defines rates based on weight and shipping regions

Code

function uc_global_quote_theme($form) {
  return array(
    'uc_global_quote_admin' => array(
      //'arguments' => array('form' => NULL),
      'render element' => 'form',
      'file' => 'uc_global_quote_admin.inc',
    ),
  );
}