function _cache_get in Coder 7.2
Retrieves data from the cache.
Parameters
string $cid: ???
string $bin: (optional) The name of the bin in which to store the cached data.
Return value
??? ???
See also
1 call to _cache_get()
- do_coder_reviews in coder_review/
coder_review.common.inc - Performs coder reviews for multiple code review definition files.
File
- coder_review/
coder_review.common.inc, line 1571 - Common functions used by both the drush and form interfaces.
Code
function _cache_get($cid, $bin = 'default') {
return function_exists('cache_get') ? cache_get($cid, $bin) : array();
}