1 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
- core/
modules/ node/ node.module, line 3864 - 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);
}