You are here

public function PHPExcel_Calculation::saveValueToCache in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php \PHPExcel_Calculation::saveValueToCache()
1 call to PHPExcel_Calculation::saveValueToCache()
PHPExcel_Calculation::_calculateFormulaValue in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php
* Parse a cell formula and calculate its value * *

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php, line 2360

Class

PHPExcel_Calculation
PHPExcel_Calculation (Multiton)

Code

public function saveValueToCache($cellReference, $cellValue) {
  if ($this->_calculationCacheEnabled) {
    $this->_calculationCache[$cellReference] = $cellValue;
  }
}