1.20.x node.module node_clear_node_tempstore($node_tempstore_id)

Remove an item from the object cache.

@since 1.11.0

Parameters

string $node_tempstore_id: The tempstore ID of the node to be deleted from the object cache.

File

modules/node/node.module, line 3851
The core module that allows content to be submitted to the site.

Code

function node_clear_node_tempstore($node_tempstore_id) {
  tempstore_clear('node_tempstore', $node_tempstore_id);
}