You are here

public function CToolsCssCache::getMultiple in Chaos Tool Suite (ctools) 7

Returns data from the persistent cache when given an array of cache IDs.

Parameters

$cids: An array of cache IDs for the data to retrieve. This is passed by reference, and will have the IDs successfully returned from cache removed.

Return value

An array of the items successfully returned from cache indexed by cid.

Overrides DrupalCacheInterface::getMultiple

File

includes/css-cache.inc, line 35
Custom cache implementation for the CTools CSS cache.

Class

CToolsCssCache
@file Custom cache implementation for the CTools CSS cache.

Code

public function getMultiple(&$cids) {
  return array();
}