_node_mass_update_helper
- Versions
- 6 – 7
_node_mass_update_helper($nid, $updates)
Node Mass Update - helper function.
Code
modules/node/node.admin.inc, line 331
<?php
function _node_mass_update_helper($nid, $updates) {
$node = node_load($nid, NULL, TRUE);
foreach ($updates as $name => $value) {
$node->$name = $value;
}
node_save($node);
return $node;
}
?>Login or register to post comments 