You are here

function uc_order_uc_order_set_properties in Ubercart 7.3

Entity metadata callback for setting order properties.

See also

uc_order_entity_property_info()

1 string reference to 'uc_order_uc_order_set_properties'
uc_order_entity_property_info in uc_order/uc_order.info.inc
Implements hook_entity_property_info().

File

uc_order/uc_order.module, line 2225

Code

function uc_order_uc_order_set_properties($order, $name, $value) {
  if ($name == 'customer') {
    $order->uid = $value;
  }
}