You are here

public function PHPExcel_CachedObjectStorage_PHPTemp::getCellList in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/PHPTemp.php \PHPExcel_CachedObjectStorage_PHPTemp::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/PHPTemp.php, line 132

Class

PHPExcel_CachedObjectStorage_PHPTemp
PHPExcel_CachedObjectStorage_PHPTemp

Code

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