|
ILIAS
release_5-2 Revision v5.2.25-18-g3f80b828510
|
Inheritance diagram for PHPExcel_Reader_HTML:
Collaboration diagram for PHPExcel_Reader_HTML:Public Member Functions | |
| __construct () | |
| Create a new PHPExcel_Reader_HTML. More... | |
| load ($pFilename) | |
| Loads PHPExcel from file. More... | |
| setInputEncoding ($pValue='ANSI') | |
| Set input encoding. More... | |
| getInputEncoding () | |
| Get input encoding. More... | |
| loadIntoExisting ($pFilename, PHPExcel $objPHPExcel) | |
| Loads PHPExcel from file into PHPExcel instance. More... | |
| getSheetIndex () | |
| Get sheet index. More... | |
| setSheetIndex ($pValue=0) | |
| Set sheet index. More... | |
| securityScan ($xml) | |
| Scan theXML for use of <!ENTITY to prevent XXE/XEE attacks. More... | |
Public Member Functions inherited from 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. 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... | |
| canRead ($pFilename) | |
| Can the current PHPExcel_Reader_IReader read the file? More... | |
| load ($pFilename) | |
Protected Member Functions | |
| _isValidFormat () | |
| Validate that the current file is an HTML file. More... | |
| _setTableStartColumn ($column) | |
| _getTableStartColumn () | |
| _releaseTableStartColumn () | |
| _flushCell ($sheet, $column, $row, &$cellContent) | |
| _processDomElement (DOMNode $element, $sheet, &$row, &$column, &$cellContent, $format=null) | |
Protected Member Functions inherited from PHPExcel_Reader_Abstract | |
| _openFile ($pFilename) | |
| Open file for reading. More... | |
Protected Attributes | |
| $_inputEncoding = 'ANSI' | |
| $_sheetIndex = 0 | |
| $_formats | |
| $rowspan = array() | |
| $_dataArray = array() | |
| $_tableLevel = 0 | |
| $_nestedColumn = array('A') | |
Protected Attributes inherited from PHPExcel_Reader_Abstract | |
| $_readDataOnly = FALSE | |
| $_includeCharts = FALSE | |
| $_loadSheetsOnly = NULL | |
| $_readFilter = NULL | |
| $_fileHandle = NULL | |
| PHPExcel_Reader_HTML::__construct | ( | ) |
|
protected |
Definition at line 196 of file HTML.php.
Referenced by _processDomElement().
Here is the caller graph for this function:
|
protected |
Definition at line 184 of file HTML.php.
References $_tableLevel.
Referenced by _processDomElement().
Here is the caller graph for this function:
|
protected |
Validate that the current file is an HTML file.
Definition at line 119 of file HTML.php.
References $data.
Referenced by loadIntoExisting().
Here is the caller graph for this function:
|
protected |
Definition at line 216 of file HTML.php.
References $column, $row, _flushCell(), _getTableStartColumn(), _processDomElement(), _releaseTableStartColumn(), _setTableStartColumn(), and PHPExcel_Cell\extractAllCellReferencesInRange().
Referenced by _processDomElement(), and loadIntoExisting().
Here is the call graph for this function:
Here is the caller graph for this function:
|
protected |
Definition at line 189 of file HTML.php.
References $_tableLevel.
Referenced by _processDomElement().
Here is the caller graph for this function:
|
protected |
Definition at line 174 of file HTML.php.
References $_tableLevel, and $column.
Referenced by _processDomElement().
Here is the caller graph for this function:| PHPExcel_Reader_HTML::getInputEncoding | ( | ) |
Get input encoding.
Definition at line 164 of file HTML.php.
References $_inputEncoding.
| PHPExcel_Reader_HTML::getSheetIndex | ( | ) |
Get sheet index.
Definition at line 500 of file HTML.php.
References $_sheetIndex.
| PHPExcel_Reader_HTML::load | ( | $pFilename | ) |
Loads PHPExcel from file.
| string | $pFilename |
| PHPExcel_Reader_Exception |
Implements PHPExcel_Reader_IReader.
Definition at line 138 of file HTML.php.
References $objPHPExcel, and loadIntoExisting().
Here is the call graph for this function:| PHPExcel_Reader_HTML::loadIntoExisting | ( | $pFilename, | |
| PHPExcel | $objPHPExcel | ||
| ) |
Loads PHPExcel from file into PHPExcel instance.
| string | $pFilename | |
| PHPExcel | $objPHPExcel |
| PHPExcel_Reader_Exception |
Definition at line 458 of file HTML.php.
References $column, $objPHPExcel, $row, _isValidFormat(), PHPExcel_Reader_Abstract\_openFile(), _processDomElement(), and PHPExcel_Reader_Abstract\securityScanFile().
Referenced by load().
Here is the call graph for this function:
Here is the caller graph for this function:| PHPExcel_Reader_HTML::securityScan | ( | $xml | ) |
Scan theXML for use of <!ENTITY to prevent XXE/XEE attacks.
| string | $xml |
| PHPExcel_Reader_Exception |
Reimplemented from PHPExcel_Reader_Abstract.
Definition at line 524 of file HTML.php.
| PHPExcel_Reader_HTML::setInputEncoding | ( | $pValue = 'ANSI' | ) |
| PHPExcel_Reader_HTML::setSheetIndex | ( | $pValue = 0 | ) |
Set sheet index.
| int | $pValue | Sheet index |
Definition at line 511 of file HTML.php.
|
protected |
Definition at line 52 of file HTML.php.
Referenced by getInputEncoding().
|
protected |
|
protected |
Definition at line 59 of file HTML.php.
Referenced by getSheetIndex().
|
protected |
Definition at line 171 of file HTML.php.
Referenced by _getTableStartColumn(), _releaseTableStartColumn(), and _setTableStartColumn().