1 node.admin.inc | _node_mass_update_helper($nid, $updates) |
Updates individual nodes when fewer than 10 are queued.
Parameters
$nid: ID of node to update.
$updates: Associative array of updates.
Return value
object: An updated node object.
See also
File
- core/
modules/ node/ node.admin.inc, line 86 - Admin page callbacks for the Node module.
Code
function _node_mass_update_helper($nid, $updates) {
$node = node_load($nid, NULL, TRUE);
// For efficiency manually save the original node before applying any changes.
$node->original = clone $node;
foreach ($updates as $name => $value) {
$node->$name = $value;
}
$node->save();
return $node;
}