You are here

public function PHPExcel_CachedObjectStorage_Memcache::getCellList in Loft Data Grids 7.2

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

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

Return value

string[]

Overrides PHPExcel_CachedObjectStorage_CacheBase::getCellList

2 calls to PHPExcel_CachedObjectStorage_Memcache::getCellList()
PHPExcel_CachedObjectStorage_Memcache::copyCellCollection in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memcache.php
* Clone the cell collection * *
PHPExcel_CachedObjectStorage_Memcache::__destruct in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memcache.php
* Destroy this cell collection

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memcache.php, line 174

Class

PHPExcel_CachedObjectStorage_Memcache
PHPExcel_CachedObjectStorage_Memcache

Code

public function getCellList() {
  if ($this->_currentObjectID !== null) {
    $this
      ->_storeData();
  }
  return parent::getCellList();
}