function metatag_cache_get in Metatag 7
Wrapper for cache_get.
See also
5 calls to metatag_cache_get()
- metatag_config_instance_info in ./
metatag.module - Returns Instance info if exists otherwise return FALSE.
- metatag_config_load_with_defaults in ./
metatag.module - Load a metatag configuration record with all the defaults merged in.
- metatag_generate_entity_metatags in ./
metatag.module - Generate the metatags for a given entity.
- metatag_get_info in ./
metatag.module - Get the meta tag information array of a meta tag.
- metatag_page_build in ./
metatag.module - Implements hook_page_build().
File
- ./
metatag.module, line 2855 - Primary hook implementations for Metatag.
Code
function metatag_cache_get($cid) {
// Try to load the object.
return cache_get($cid, 'cache_metatag');
}