You are here

public function PHPExcel_CachedObjectStorage_MemorySerialized::getCellList in Loft Data Grids 7.2

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

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

Return value

string[]

Overrides PHPExcel_CachedObjectStorage_CacheBase::getCellList

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/MemorySerialized.php, line 112

Class

PHPExcel_CachedObjectStorage_MemorySerialized
PHPExcel_CachedObjectStorage_MemorySerialized

Code

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