function merci_migrate_legacy_node_load in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.3
@todo Please document this function.
See also
1 call to merci_migrate_legacy_node_load()
- MerciItemMigrateSource::getNextRow in merci_migrate/
merci_items.inc - Implementation of MigrateSource::getNextRow().
File
- merci_migrate/
merci_items.inc, line 116
Code
function merci_migrate_legacy_node_load(&$node) {
// Process active MERCI node types and reservation nodes.
$settings = merci_load_item_settings($node);
foreach ($settings as $key => $value) {
$node->{$key} = $value;
}
}