public function CToolsCssCache::get in Chaos Tool Suite (ctools) 7
Returns data from the persistent cache.
Data may be stored as either plain text or as serialized data. cache_get() will automatically return unserialized objects and arrays.
Parameters
$cid: The cache ID of the data to retrieve.
Return value
The cache or FALSE on failure.
Overrides DrupalCacheInterface::get
File
- includes/
css-cache.inc, line 28 - Custom cache implementation for the CTools CSS cache.
Class
- CToolsCssCache
- @file Custom cache implementation for the CTools CSS cache.
Code
public function get($cid) {
return FALSE;
}