|
ILIAS
release_5-2 Revision v5.2.25-18-g3f80b828510
|
Inheritance diagram for PHPExcel_CachedObjectStorage_Wincache:
Collaboration diagram for PHPExcel_CachedObjectStorage_Wincache:Public Member Functions | |
| addCacheData ($pCoord, PHPExcel_Cell $cell) | |
| Add or Update a cell in cache identified by coordinate address. More... | |
| isDataSet ($pCoord) | |
| Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell? More... | |
| getCacheData ($pCoord) | |
| Get cell at a specific coordinate. More... | |
| getCellList () | |
| Get a list of all cell addresses currently held in cache. More... | |
| deleteCacheData ($pCoord) | |
| Delete a cell in cache identified by coordinate address. More... | |
| copyCellCollection (PHPExcel_Worksheet $parent) | |
| Clone the cell collection. More... | |
| unsetWorksheetCells () | |
| Clear the cell collection and disconnect from our parent. More... | |
| __construct (PHPExcel_Worksheet $parent, $arguments) | |
| Initialise this new cell collection. More... | |
| __destruct () | |
| Destroy this cell collection. More... | |
Public Member Functions inherited from PHPExcel_CachedObjectStorage_CacheBase | |
| __construct (PHPExcel_Worksheet $parent) | |
| Initialise this new cell collection. More... | |
| getParent () | |
| Return the parent worksheet for this cell collection. More... | |
| isDataSet ($pCoord) | |
| Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell? More... | |
| moveCell ($fromAddress, $toAddress) | |
| Move a cell object from one address to another. More... | |
| updateCacheData (PHPExcel_Cell $cell) | |
| Add or Update a cell in cache. More... | |
| deleteCacheData ($pCoord) | |
| Delete a cell in cache identified by coordinate address. More... | |
| getCellList () | |
| Get a list of all cell addresses currently held in cache. More... | |
| getSortedCellList () | |
| Sort the list of all cell addresses currently held in cache by row and column. More... | |
| getHighestRowAndColumn () | |
| Get highest worksheet column and highest row that have cell records. More... | |
| getCurrentAddress () | |
| Return the cell address of the currently active cell object. More... | |
| getCurrentColumn () | |
| Return the column address of the currently active cell object. More... | |
| getCurrentRow () | |
| Return the row address of the currently active cell object. More... | |
| getHighestColumn ($row=null) | |
| getHighestRow ($column=null) | |
| copyCellCollection (PHPExcel_Worksheet $parent) | |
| Clone the cell collection. More... | |
| removeRow ($row) | |
| Remove a row, deleting all cells in that row. More... | |
| removeColumn ($column) | |
| Remove a column, deleting all cells in that column. More... | |
Public Member Functions inherited from PHPExcel_CachedObjectStorage_ICache | |
| addCacheData ($pCoord, PHPExcel_Cell $cell) | |
| Add or Update a cell in cache identified by coordinate address. More... | |
| updateCacheData (PHPExcel_Cell $cell) | |
| Add or Update a cell in cache. More... | |
| getCacheData ($pCoord) | |
| Fetch a cell from cache identified by coordinate address. More... | |
| deleteCacheData ($pCoord) | |
| Delete a cell in cache identified by coordinate address. More... | |
| isDataSet ($pCoord) | |
| Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell? More... | |
| getCellList () | |
| Get a list of all cell addresses currently held in cache. More... | |
| getSortedCellList () | |
| Get the list of all cell addresses currently held in cache sorted by column and row. More... | |
| copyCellCollection (PHPExcel_Worksheet $parent) | |
| Clone the cell collection. More... | |
Static Public Member Functions | |
| static | cacheMethodIsAvailable () |
| Identify whether the caching method is currently available Some methods are dependent on the availability of certain extensions being enabled in the PHP build. More... | |
| static | cacheMethodIsAvailable () |
| Identify whether the caching method is currently available Some methods are dependent on the availability of certain extensions being enabled in the PHP build. More... | |
| static | cacheMethodIsAvailable () |
| Identify whether the caching method is currently available Some methods are dependent on the availability of certain extensions being enabled in the PHP build. More... | |
Protected Member Functions | |
| _storeData () | |
| Store cell data in cache for the current cell object if it's "dirty", and the 'nullify' the current cell object. More... | |
Protected Member Functions inherited from PHPExcel_CachedObjectStorage_CacheBase | |
| _getUniqueID () | |
| Generate a unique ID for cache referencing. More... | |
Private Attributes | |
| $_cachePrefix = null | |
| $_cacheTime = 600 | |
Additional Inherited Members | |
Protected Attributes inherited from PHPExcel_CachedObjectStorage_CacheBase | |
| $_parent | |
| $_currentObject = null | |
| $_currentObjectID = null | |
| $_currentCellIsDirty = true | |
| $_cellCache = array() | |
Definition at line 36 of file Wincache.php.
| PHPExcel_CachedObjectStorage_Wincache::__construct | ( | PHPExcel_Worksheet | $parent, |
| $arguments | |||
| ) |
Initialise this new cell collection.
| PHPExcel_Worksheet | $parent | The worksheet for this cell collection |
| array | of mixed $arguments Additional initialisation arguments |
Definition at line 256 of file Wincache.php.
References PHPExcel_CachedObjectStorage_CacheBase\_getUniqueID().
Here is the call graph for this function:| PHPExcel_CachedObjectStorage_Wincache::__destruct | ( | ) |
Destroy this cell collection.
Definition at line 272 of file Wincache.php.
References getCellList().
Referenced by _storeData(), copyCellCollection(), and unsetWorksheetCells().
Here is the call graph for this function:
Here is the caller graph for this function:
|
protected |
Store cell data in cache for the current cell object if it's "dirty", and the 'nullify' the current cell object.
| PHPExcel_Exception |
Definition at line 60 of file Wincache.php.
References __destruct().
Referenced by addCacheData(), getCacheData(), and getCellList().
Here is the call graph for this function:
Here is the caller graph for this function:| PHPExcel_CachedObjectStorage_Wincache::addCacheData | ( | $pCoord, | |
| PHPExcel_Cell | $cell | ||
| ) |
Add or Update a cell in cache identified by coordinate address.
| string | $pCoord | Coordinate address of the cell to update |
| PHPExcel_Cell | $cell | Cell to update |
| PHPExcel_Exception |
Implements PHPExcel_CachedObjectStorage_ICache.
Definition at line 91 of file Wincache.php.
References _storeData().
Here is the call graph for this function:
|
static |
Identify whether the caching method is currently available Some methods are dependent on the availability of certain extensions being enabled in the PHP build.
Reimplemented from PHPExcel_CachedObjectStorage_CacheBase.
Definition at line 286 of file Wincache.php.
| PHPExcel_CachedObjectStorage_Wincache::copyCellCollection | ( | PHPExcel_Worksheet | $parent | ) |
Clone the cell collection.
| PHPExcel_Worksheet | $parent | The new worksheet |
Reimplemented from PHPExcel_CachedObjectStorage_CacheBase.
Definition at line 204 of file Wincache.php.
References $success, __destruct(), PHPExcel_CachedObjectStorage_CacheBase\_getUniqueID(), and getCellList().
Here is the call graph for this function:| PHPExcel_CachedObjectStorage_Wincache::deleteCacheData | ( | $pCoord | ) |
Delete a cell in cache identified by coordinate address.
| string | $pCoord | Coordinate address of the cell to delete |
| PHPExcel_Exception |
Reimplemented from PHPExcel_CachedObjectStorage_CacheBase.
Definition at line 189 of file Wincache.php.
| PHPExcel_CachedObjectStorage_Wincache::getCacheData | ( | $pCoord | ) |
Get cell at a specific coordinate.
| string | $pCoord | Coordinate of the cell |
| PHPExcel_Exception |
Implements PHPExcel_CachedObjectStorage_ICache.
Definition at line 137 of file Wincache.php.
References PHPExcel_CachedObjectStorage_CacheBase\$_currentObject, $success, and _storeData().
Here is the call graph for this function:| PHPExcel_CachedObjectStorage_Wincache::getCellList | ( | ) |
Get a list of all cell addresses currently held in cache.
Reimplemented from PHPExcel_CachedObjectStorage_CacheBase.
Definition at line 174 of file Wincache.php.
References _storeData().
Referenced by __destruct(), and copyCellCollection().
Here is the call graph for this function:
Here is the caller graph for this function:| PHPExcel_CachedObjectStorage_Wincache::isDataSet | ( | $pCoord | ) |
Is a value set in the current PHPExcel_CachedObjectStorage_ICache for an indexed cell?
| string | $pCoord | Coordinate address of the cell to check |
Reimplemented from PHPExcel_CachedObjectStorage_CacheBase.
Definition at line 111 of file Wincache.php.
References $success.
| PHPExcel_CachedObjectStorage_Wincache::unsetWorksheetCells | ( | ) |
Clear the cell collection and disconnect from our parent.
Definition at line 234 of file Wincache.php.
References __destruct().
Here is the call graph for this function:
|
private |
Definition at line 43 of file Wincache.php.
|
private |
Definition at line 50 of file Wincache.php.