You are here

public function PHPExcel_CachedObjectStorage_CacheBase::getCellList in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php \PHPExcel_CachedObjectStorage_CacheBase::getCellList()

* Get a list of all cell addresses currently held in cache * *

Return value

string[]

14 calls to PHPExcel_CachedObjectStorage_CacheBase::getCellList()
PHPExcel_CachedObjectStorage_APC::getCellList in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/APC.php
* Get a list of all cell addresses currently held in cache * *
PHPExcel_CachedObjectStorage_CacheBase::getHighestColumn in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php
* Get highest worksheet column *
PHPExcel_CachedObjectStorage_CacheBase::getHighestRow in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php
* Get highest worksheet row *
PHPExcel_CachedObjectStorage_CacheBase::getHighestRowAndColumn in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php
* Get highest worksheet column and highest row that have cell records * *
PHPExcel_CachedObjectStorage_CacheBase::getSortedCellList in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php
* Sort the list of all cell addresses currently held in cache by row and column * *

... See full list

10 methods override PHPExcel_CachedObjectStorage_CacheBase::getCellList()
PHPExcel_CachedObjectStorage_APC::getCellList in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/APC.php
* Get a list of all cell addresses currently held in cache * *
PHPExcel_CachedObjectStorage_DiscISAM::getCellList in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/DiscISAM.php
* Get a list of all cell addresses currently held in cache * *
PHPExcel_CachedObjectStorage_Igbinary::getCellList in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Igbinary.php
* Get a list of all cell addresses currently held in cache * *
PHPExcel_CachedObjectStorage_Memcache::getCellList in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memcache.php
* Get a list of all cell addresses currently held in cache * *
PHPExcel_CachedObjectStorage_MemoryGZip::getCellList in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/MemoryGZip.php
* Get a list of all cell addresses currently held in cache * *

... See full list

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php, line 172

Class

PHPExcel_CachedObjectStorage_CacheBase
PHPExcel_CachedObjectStorage_CacheBase

Code

public function getCellList() {
  return array_keys($this->_cellCache);
}