| 6 node.admin.inc | _node_mass_update_helper($nid, $updates) |
| 7 node.admin.inc | _node_mass_update_helper($nid, $updates) |
| 8 node.admin.inc | _node_mass_update_helper($nid, $updates) |
Node Mass Update - helper function.
2 calls to _node_mass_update_helper()
File
- modules/
node/ node.admin.inc, line 378 - Content administration and module settings UI.
Code
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