ILIAS
release_5-2 Revision v5.2.25-18-g3f80b828510
|
Public Member Functions | |
getReadDataOnly () | |
Read data only? If this is true, then the Reader will only read data values for cells, it will not read any formatting information. More... | |
setReadDataOnly ($pValue=FALSE) | |
Set read data only Set to true, to advise the Reader only to read data values for cells, and to ignore any formatting information. More... | |
getIncludeCharts () | |
Read charts in workbook? If this is true, then the Reader will include any charts that exist in the workbook. More... | |
setIncludeCharts ($pValue=FALSE) | |
Set read charts in workbook Set to true, to advise the Reader to include any charts that exist in the workbook. More... | |
getLoadSheetsOnly () | |
Get which sheets to load Returns either an array of worksheet names (the list of worksheets that should be loaded), or a null indicating that all worksheets in the workbook should be loaded. More... | |
setLoadSheetsOnly ($value=NULL) | |
Set which sheets to load. More... | |
setLoadAllSheets () | |
Set all sheets to load Tells the Reader to load all worksheets from the workbook. More... | |
getReadFilter () | |
Read filter. More... | |
setReadFilter (PHPExcel_Reader_IReadFilter $pValue) | |
Set read filter. More... | |
canRead ($pFilename) | |
Can the current PHPExcel_Reader_IReader read the file? More... | |
securityScan ($xml) | |
Scan theXML for use of <!ENTITY to prevent XXE/XEE attacks. More... | |
securityScanFile ($filestream) | |
Scan theXML for use of <!ENTITY to prevent XXE/XEE attacks. More... | |
Public Member Functions inherited from PHPExcel_Reader_IReader | |
load ($pFilename) | |
Loads PHPExcel from file. More... | |
Protected Member Functions | |
_openFile ($pFilename) | |
Open file for reading. More... | |
Protected Attributes | |
$_readDataOnly = FALSE | |
$_includeCharts = FALSE | |
$_loadSheetsOnly = NULL | |
$_readFilter = NULL | |
$_fileHandle = NULL | |
Definition at line 36 of file Abstract.php.
|
protected |
Open file for reading.
string | $pFilename |
PHPExcel_Reader_Exception |
Definition at line 195 of file Abstract.php.
Referenced by PHPExcel_Reader_Excel2003XML\canRead(), canRead(), PHPExcel_Reader_SYLK\listWorksheetInfo(), PHPExcel_Reader_CSV\listWorksheetInfo(), PHPExcel_Reader_SYLK\loadIntoExisting(), PHPExcel_Reader_CSV\loadIntoExisting(), and PHPExcel_Reader_HTML\loadIntoExisting().
PHPExcel_Reader_Abstract::canRead | ( | $pFilename | ) |
Can the current PHPExcel_Reader_IReader read the file?
string | $pFilename |
PHPExcel_Reader_Exception |
Implements PHPExcel_Reader_IReader.
Definition at line 216 of file Abstract.php.
References _openFile().
PHPExcel_Reader_Abstract::getIncludeCharts | ( | ) |
Read charts in workbook? If this is true, then the Reader will include any charts that exist in the workbook.
Note that a ReadDataOnly value of false overrides, and charts won't be read regardless of the IncludeCharts value. If false (the default) it will ignore any charts defined in the workbook file.
Definition at line 106 of file Abstract.php.
References $_includeCharts.
PHPExcel_Reader_Abstract::getLoadSheetsOnly | ( | ) |
Get which sheets to load Returns either an array of worksheet names (the list of worksheets that should be loaded), or a null indicating that all worksheets in the workbook should be loaded.
Definition at line 132 of file Abstract.php.
References $_loadSheetsOnly.
PHPExcel_Reader_Abstract::getReadDataOnly | ( | ) |
Read data only? If this is true, then the Reader will only read data values for cells, it will not read any formatting information.
If false (the default) it will read data and formatting.
Definition at line 80 of file Abstract.php.
References $_readDataOnly.
PHPExcel_Reader_Abstract::getReadFilter | ( | ) |
Read filter.
Definition at line 173 of file Abstract.php.
References $_readFilter.
Referenced by PHPExcel_Reader_Excel5\_includeCellRangeFiltered(), PHPExcel_Reader_Excel5\_readBlank(), PHPExcel_Reader_Excel5\_readBoolErr(), PHPExcel_Reader_Excel5\_readFormula(), PHPExcel_Reader_Excel5\_readLabel(), PHPExcel_Reader_Excel5\_readLabelSst(), PHPExcel_Reader_Excel5\_readMulBlank(), PHPExcel_Reader_Excel5\_readMulRk(), PHPExcel_Reader_Excel5\_readNumber(), PHPExcel_Reader_Excel5\_readRk(), PHPExcel_Reader_Excel2007\load(), PHPExcel_Reader_Excel5\load(), PHPExcel_Reader_Gnumeric\loadIntoExisting(), PHPExcel_Reader_Excel2003XML\loadIntoExisting(), and PHPExcel_Reader_OOCalc\loadIntoExisting().
PHPExcel_Reader_Abstract::securityScan | ( | $xml | ) |
Scan theXML for use of <!ENTITY to prevent XXE/XEE attacks.
string | $xml |
PHPExcel_Reader_Exception |
Definition at line 236 of file Abstract.php.
Referenced by PHPExcel_Reader_Excel2007\_readRibbon(), PHPExcel_Reader_OOCalc\canRead(), PHPExcel_Reader_Excel2007\canRead(), PHPExcel_Reader_Excel2003XML\listWorksheetInfo(), PHPExcel_Reader_Excel2007\listWorksheetInfo(), PHPExcel_Reader_Excel2007\listWorksheetNames(), PHPExcel_Reader_Excel2003XML\listWorksheetNames(), PHPExcel_Reader_Excel2007\load(), PHPExcel_Reader_Gnumeric\loadIntoExisting(), PHPExcel_Reader_Excel2003XML\loadIntoExisting(), PHPExcel_Reader_OOCalc\loadIntoExisting(), and securityScanFile().
PHPExcel_Reader_Abstract::securityScanFile | ( | $filestream | ) |
Scan theXML for use of <!ENTITY to prevent XXE/XEE attacks.
string | $filestream |
PHPExcel_Reader_Exception |
Definition at line 251 of file Abstract.php.
References securityScan().
Referenced by PHPExcel_Reader_Gnumeric\listWorksheetInfo(), PHPExcel_Reader_Excel2007\listWorksheetInfo(), PHPExcel_Reader_OOCalc\listWorksheetInfo(), PHPExcel_Reader_Gnumeric\listWorksheetNames(), PHPExcel_Reader_OOCalc\listWorksheetNames(), and PHPExcel_Reader_HTML\loadIntoExisting().
PHPExcel_Reader_Abstract::setIncludeCharts | ( | $pValue = FALSE | ) |
Set read charts in workbook Set to true, to advise the Reader to include any charts that exist in the workbook.
Note that a ReadDataOnly value of false overrides, and charts won't be read regardless of the IncludeCharts value. Set to false (the default) to discard charts.
boolean | $pValue |
Definition at line 120 of file Abstract.php.
PHPExcel_Reader_Abstract::setLoadAllSheets | ( | ) |
Set all sheets to load Tells the Reader to load all worksheets from the workbook.
Definition at line 162 of file Abstract.php.
Referenced by setLoadSheetsOnly().
PHPExcel_Reader_Abstract::setLoadSheetsOnly | ( | $value = NULL | ) |
Set which sheets to load.
mixed | $value | This should be either an array of worksheet names to be loaded, or a string containing a single worksheet name. If NULL, then it tells the Reader to read all worksheets in the workbook |
Definition at line 146 of file Abstract.php.
References array, and setLoadAllSheets().
PHPExcel_Reader_Abstract::setReadDataOnly | ( | $pValue = FALSE | ) |
Set read data only Set to true, to advise the Reader only to read data values for cells, and to ignore any formatting information.
Set to false (the default) to advise the Reader to read both data and formatting for cells.
boolean | $pValue |
Definition at line 93 of file Abstract.php.
PHPExcel_Reader_Abstract::setReadFilter | ( | PHPExcel_Reader_IReadFilter | $pValue | ) |
Set read filter.
PHPExcel_Reader_IReadFilter | $pValue |
Definition at line 183 of file Abstract.php.
|
protected |
Definition at line 70 of file Abstract.php.
Referenced by PHPExcel_Reader_Excel2003XML\canRead(), PHPExcel_Reader_SYLK\listWorksheetInfo(), PHPExcel_Reader_CSV\listWorksheetInfo(), PHPExcel_Reader_SYLK\loadIntoExisting(), and PHPExcel_Reader_CSV\loadIntoExisting().
|
protected |
Definition at line 53 of file Abstract.php.
Referenced by getIncludeCharts().
|
protected |
Definition at line 61 of file Abstract.php.
Referenced by getLoadSheetsOnly().
|
protected |
Definition at line 45 of file Abstract.php.
Referenced by getReadDataOnly().
|
protected |
Definition at line 68 of file Abstract.php.
Referenced by getReadFilter().