You are here

function uc_fedex_init in FedEx Shipping 6

Same name and namespace in other branches
  1. 6.2 uc_fedex.module \uc_fedex_init()
  2. 7.2 uc_fedex.module \uc_fedex_init()
  3. 7 uc_fedex.module \uc_fedex_init()

Implementation of hook_init().

Used to load module CSS. This is the wrong place to do it, because the CSS will be included on every page, not just on the pages where it is needed. However, this is currently the Ubercart-recommended place for adding shipping quotes CSS.

File

./uc_fedex.module, line 57
FedEx Web Services Rate / Available Services Quote

Code

function uc_fedex_init() {
  drupal_add_css(drupal_get_path('module', 'uc_fedex') . '/uc_fedex.css');
}