public function PHPExcel_Cell::notifyCacheController in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php \PHPExcel_Cell::notifyCacheController()
* Send notification to the cache controller * *
Return value
void *
7 calls to PHPExcel_Cell::notifyCacheController()
- PHPExcel_Cell::rebindParent in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Cell.php - * Re-bind parent * *
- PHPExcel_Cell::setCalculatedValue in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Cell.php - * Set old calculated value (cached) * *
- PHPExcel_Cell::setDataType in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Cell.php - * Set cell data type * *
- PHPExcel_Cell::setDataValidation in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Cell.php - * Set Data validation rules * *
- PHPExcel_Cell::setHyperlink in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Cell.php - * Set Hyperlink * *
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Cell.php, line 105
Class
- PHPExcel_Cell
- PHPExcel_Cell
Code
public function notifyCacheController() {
$this->_parent
->updateCacheData($this);
return $this;
}