public function PHPExcel_CachedObjectStorage_CacheBase::__construct in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php \PHPExcel_CachedObjectStorage_CacheBase::__construct()
* Initialise this new cell collection * *
Parameters
PHPExcel_Worksheet $parent The worksheet for this cell collection:
7 calls to PHPExcel_CachedObjectStorage_CacheBase::__construct()
- PHPExcel_CachedObjectStorage_APC::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ APC.php - Initialise this new cell collection
- PHPExcel_CachedObjectStorage_DiscISAM::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ DiscISAM.php - * Initialise this new cell collection * *
- PHPExcel_CachedObjectStorage_Memcache::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ Memcache.php - * Initialise this new cell collection * *
- PHPExcel_CachedObjectStorage_PHPTemp::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ PHPTemp.php - * Initialise this new cell collection * *
- PHPExcel_CachedObjectStorage_SQLite3::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ SQLite3.php - * Initialise this new cell collection * *
7 methods override PHPExcel_CachedObjectStorage_CacheBase::__construct()
- PHPExcel_CachedObjectStorage_APC::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ APC.php - Initialise this new cell collection
- PHPExcel_CachedObjectStorage_DiscISAM::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ DiscISAM.php - * Initialise this new cell collection * *
- PHPExcel_CachedObjectStorage_Memcache::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ Memcache.php - * Initialise this new cell collection * *
- PHPExcel_CachedObjectStorage_PHPTemp::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ PHPTemp.php - * Initialise this new cell collection * *
- PHPExcel_CachedObjectStorage_SQLite3::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ SQLite3.php - * Initialise this new cell collection * *
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ CacheBase.php, line 81
Class
- PHPExcel_CachedObjectStorage_CacheBase
- PHPExcel_CachedObjectStorage_CacheBase
Code
public function __construct(PHPExcel_Worksheet $parent) {
// Set our parent worksheet.
// This is maintained within the cache controller to facilitate re-attaching it to PHPExcel_Cell objects when
// they are woken from a serialized state
$this->_parent = $parent;
}