function views_navigation_get_cached_result in Views navigation 7
Get a view result from cache.
1 call to views_navigation_get_cached_result()
- views_navigation_get_result in ./
views_navigation.inc - Get the result of a query, as an array of etids keyed by position.
File
- ./
views_navigation.inc, line 21 - Views navigation main include file.
Code
function views_navigation_get_cached_result($cid) {
$cache = cache_get('result-' . $cid, VIEWS_NAVIGATION_CACHE_BIN);
return $cache ? $cache->data : FALSE;
}