You are here

function uc_global_quote_theme in Ubercart Global Quote 6

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

Implementation of hook_theme().

File

./uc_global_quote.module, line 83
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,
      ),
      'file' => 'uc_global_quote_admin.inc',
    ),
  );
}