You are here

function uc_quote_entity_property_info_alter in Ubercart 7.3

Implements hook_entity_property_info_alter().

File

shipping/uc_quote/uc_quote.info.inc, line 11
Entity metadata hooks for uc_quote.module.

Code

function uc_quote_entity_property_info_alter(&$info) {
  $info['uc_order_product']['properties']['shipping_type'] = array(
    'type' => 'text',
    'label' => t('Shipping type'),
    'getter callback' => 'uc_product_get_shipping_type',
  );
}