- _uc_usps_package_products in contributions/ubercart/shipping/uc_usps/uc_usps.module
uc_length_conversion($from_units, $to_units = NULL)contributions/ubercart/uc_store/uc_store.module, line 1942
<?php
function uc_length_conversion($from_units, $to_units = NULL) {
if (is_null($to_units)) {
$to_units = variable_get('uc_length_unit', 'in');
}
$constant = strtoupper($from_units) .'_TO_'. strtoupper($to_units);
if (defined($constant) && ($conversion = constant($constant)) > 0) {
return $conversion;
}
else {
return 1;
}
}
?>