ensure_my_table(); $this->add_additional_fields(); } /** * Overrides uc_product_handler_field_weight::render(). */ function render($values) { $package = uc_shipping_package_load($values->{$this->aliases['package_id']}); if ($this->options['format'] == 'numeric') { return $package->weight; } if ($this->options['format'] == 'uc_weight') { return uc_weight_format($package->weight, $package->weight_units); } } }