Back to Cache class

Method getAll

public mixed
getAll
()
Get a list of all cached data
Returns
  • mixed Boolean false on failure or an object with a list of cache groups and data
Since
  • 1.7.0
Class: Cache
Project: Joomla

Method getAll - Source code

/**
 * Get a list of all cached data
 *
 * @return  mixed  Boolean false on failure or an object with a list of cache groups and data
 *
 * @since   1.7.0
 */
public function getAll()
{
    if (!$this->getCaching()) {
        return false;
    }
    return $this->_getStorage()->getAll();
}