You are here

public function PHPExcel_CachedObjectStorage_CacheBase::copyCellCollection in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php \PHPExcel_CachedObjectStorage_CacheBase::copyCellCollection()

* Clone the cell collection * *

Parameters

PHPExcel_Worksheet $parent The new worksheet: * @return void

6 calls to PHPExcel_CachedObjectStorage_CacheBase::copyCellCollection()
PHPExcel_CachedObjectStorage_APC::copyCellCollection in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/APC.php
Clone the cell collection
PHPExcel_CachedObjectStorage_DiscISAM::copyCellCollection in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/DiscISAM.php
* Clone the cell collection * *
PHPExcel_CachedObjectStorage_Memcache::copyCellCollection in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memcache.php
* Clone the cell collection * *
PHPExcel_CachedObjectStorage_Memory::copyCellCollection in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memory.php
* Clone the cell collection * *
PHPExcel_CachedObjectStorage_PHPTemp::copyCellCollection in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/PHPTemp.php
* Clone the cell collection * *

... See full list

8 methods override PHPExcel_CachedObjectStorage_CacheBase::copyCellCollection()
PHPExcel_CachedObjectStorage_APC::copyCellCollection in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/APC.php
Clone the cell collection
PHPExcel_CachedObjectStorage_DiscISAM::copyCellCollection in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/DiscISAM.php
* Clone the cell collection * *
PHPExcel_CachedObjectStorage_Memcache::copyCellCollection in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memcache.php
* Clone the cell collection * *
PHPExcel_CachedObjectStorage_Memory::copyCellCollection in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memory.php
* Clone the cell collection * *
PHPExcel_CachedObjectStorage_PHPTemp::copyCellCollection in vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/PHPTemp.php
* Clone the cell collection * *

... See full list

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php, line 326

Class

PHPExcel_CachedObjectStorage_CacheBase
PHPExcel_CachedObjectStorage_CacheBase

Code

public function copyCellCollection(PHPExcel_Worksheet $parent) {
  $this->_currentCellIsDirty;
  $this
    ->_storeData();
  $this->_parent = $parent;
  if ($this->_currentObject !== NULL && is_object($this->_currentObject)) {
    $this->_currentObject
      ->attach($this);
  }
}