You are here

function weight_weight_property_set in Weight 7.2

Entity API setter callback for the 'weight' property.

1 string reference to 'weight_weight_property_set'
weight_entity_property_info_alter in ./weight.module
Implements hook_entity_property_info_alter().

File

./weight.module, line 114

Code

function weight_weight_property_set($node, $name, $value) {
  $node->weight_weight = $value;
}