| 7 node.module | node_type_cache_reset() |
| 8 node.module | node_type_cache_reset() |
Clears the node type cache.
6 calls to node_type_cache_reset()
File
- modules/
node/ node.module, line 748 - The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.
Code
function node_type_cache_reset() {
cache_clear_all('node_types:', 'cache', TRUE);
drupal_static_reset('_node_types_build');
}
Login or register to post comments