ILIAS
release_5-2 Revision v5.2.25-18-g3f80b828510
|
Public Member Functions | |
addCacheData ($pCoord, PHPExcel_Cell $cell) | |
Add or Update a cell in cache identified by coordinate address. More... | |
getCacheData ($pCoord) | |
Get cell at a specific coordinate. More... | |
isDataSet ($pCoord) | |
Is a value set for an indexed cell? More... | |
deleteCacheData ($pCoord) | |
Delete a cell in cache identified by coordinate address. More... | |
moveCell ($fromAddress, $toAddress) | |
Move a cell object from one address to another. More... | |
getCellList () | |
Get a list of all cell addresses currently held in cache. 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) | |
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) | |
Get highest worksheet column. More... | |
getHighestRow ($column=null) | |
Get highest worksheet row. More... | |
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 | |
updateCacheData (PHPExcel_Cell $cell) | |
Add or Update a cell in cache. More... | |
getSortedCellList () | |
Get the list of all cell addresses currently held in cache sorted by column and row. 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 Public Member Functions inherited from PHPExcel_CachedObjectStorage_CacheBase | |
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 | |
$_TableName = null | |
$_DBHandle = null | |
$_selectQuery | |
$_insertQuery | |
$_updateQuery | |
$_deleteQuery | |
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 SQLite3.php.
PHPExcel_CachedObjectStorage_SQLite3::__construct | ( | PHPExcel_Worksheet | $parent | ) |
Initialise this new cell collection.
PHPExcel_Worksheet | $parent | The worksheet for this cell collection |
Definition at line 299 of file SQLite3.php.
References PHPExcel_CachedObjectStorage_CacheBase\_getUniqueID().
PHPExcel_CachedObjectStorage_SQLite3::__destruct | ( | ) |
Destroy this cell collection.
Definition at line 322 of file SQLite3.php.
Referenced by unsetWorksheetCells().
|
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 87 of file SQLite3.php.
References $result.
Referenced by addCacheData(), copyCellCollection(), getCacheData(), and getCellList().
PHPExcel_CachedObjectStorage_SQLite3::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 110 of file SQLite3.php.
References _storeData().
|
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.
Implements PHPExcel_CachedObjectStorage_ICache.
Definition at line 337 of file SQLite3.php.
PHPExcel_CachedObjectStorage_SQLite3::copyCellCollection | ( | PHPExcel_Worksheet | $parent | ) |
Clone the cell collection.
PHPExcel_Worksheet | $parent | The new worksheet |
Implements PHPExcel_CachedObjectStorage_ICache.
Definition at line 261 of file SQLite3.php.
References PHPExcel_CachedObjectStorage_CacheBase\$_currentCellIsDirty, PHPExcel_CachedObjectStorage_CacheBase\_getUniqueID(), and _storeData().
PHPExcel_CachedObjectStorage_SQLite3::deleteCacheData | ( | $pCoord | ) |
Delete a cell in cache identified by coordinate address.
string | $pCoord | Coordinate address of the cell to delete |
PHPExcel_Exception |
Implements PHPExcel_CachedObjectStorage_ICache.
Definition at line 188 of file SQLite3.php.
References $result.
PHPExcel_CachedObjectStorage_SQLite3::getCacheData | ( | $pCoord | ) |
Get cell at a specific coordinate.
string | $pCoord | Coordinate of the cell |
PHPExcel_Exception |
Implements PHPExcel_CachedObjectStorage_ICache.
Definition at line 130 of file SQLite3.php.
References PHPExcel_CachedObjectStorage_CacheBase\$_currentObject, and _storeData().
PHPExcel_CachedObjectStorage_SQLite3::getCellList | ( | ) |
Get a list of all cell addresses currently held in cache.
Implements PHPExcel_CachedObjectStorage_ICache.
Definition at line 236 of file SQLite3.php.
References $query, $row, _storeData(), and array.
PHPExcel_CachedObjectStorage_SQLite3::isDataSet | ( | $pCoord | ) |
Is a value set for an indexed cell?
string | $pCoord | Coordinate address of the cell to check |
Implements PHPExcel_CachedObjectStorage_ICache.
Definition at line 165 of file SQLite3.php.
PHPExcel_CachedObjectStorage_SQLite3::moveCell | ( | $fromAddress, | |
$toAddress | |||
) |
Move a cell object from one address to another.
string | $fromAddress | Current address of the cell to move |
string | $toAddress | Destination address of the cell to move |
Definition at line 211 of file SQLite3.php.
References $result.
PHPExcel_CachedObjectStorage_SQLite3::unsetWorksheetCells | ( | ) |
Clear the cell collection and disconnect from our parent.
Definition at line 281 of file SQLite3.php.
References __destruct().
|
private |
Definition at line 50 of file SQLite3.php.
|
private |
Definition at line 78 of file SQLite3.php.
|
private |
Definition at line 64 of file SQLite3.php.
|
private |
Definition at line 57 of file SQLite3.php.
|
private |
Definition at line 43 of file SQLite3.php.
|
private |
Definition at line 71 of file SQLite3.php.