public function PHPExcel_CachedObjectStorage_SQLite3::addCacheData in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite3.php \PHPExcel_CachedObjectStorage_SQLite3::addCacheData()
Add or Update a cell in cache identified by coordinate address
Parameters
string $pCoord Coordinate address of the cell to update:
PHPExcel_Cell $cell Cell to update: * @return PHPExcel_Cell
Throws
Overrides PHPExcel_CachedObjectStorage_ICache::addCacheData
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ SQLite3.php, line 110
Class
- PHPExcel_CachedObjectStorage_SQLite3
- PHPExcel_CachedObjectStorage_SQLite3
Code
public function addCacheData($pCoord, PHPExcel_Cell $cell) {
if ($pCoord !== $this->_currentObjectID && $this->_currentObjectID !== null) {
$this
->_storeData();
}
$this->_currentObjectID = $pCoord;
$this->_currentObject = $cell;
$this->_currentCellIsDirty = true;
return $cell;
}