You are here

function uc_quote_init in Ubercart 6.2

Implements hook_init().

File

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

Code

function uc_quote_init() {
  drupal_add_css(drupal_get_path('module', 'uc_quote') . '/uc_quote.css', 'module');
  global $conf;
  $conf['i18n_variables'][] = 'uc_quote_err_msg';
  $conf['i18n_variables'][] = 'uc_quote_pane_description';
}