ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
IReader.php
Go to the documentation of this file.
1 <?php
2 
4 
5 interface IReader
6 {
10  public function __construct();
11 
19  public function canRead($pFilename);
20 
28  public function getReadDataOnly();
29 
39  public function setReadDataOnly($pValue);
40 
48  public function getReadEmptyCells();
49 
59  public function setReadEmptyCells($pValue);
60 
69  public function getIncludeCharts();
70 
81  public function setIncludeCharts($pValue);
82 
90  public function getLoadSheetsOnly();
91 
101  public function setLoadSheetsOnly($value);
102 
109  public function setLoadAllSheets();
110 
116  public function getReadFilter();
117 
123  public function setReadFilter(IReadFilter $pValue);
124 
132  public function load($pFilename);
133 }
setLoadSheetsOnly($value)
Set which sheets to load.
setReadEmptyCells($pValue)
Set read empty cells Set to true (the default) to advise the Reader read data values for all cells...
setIncludeCharts($pValue)
Set read charts in workbook Set to true, to advise the Reader to include any charts that exist in the...
setLoadAllSheets()
Set all sheets to load Tells the Reader to load all worksheets from the workbook. ...
setReadDataOnly($pValue)
Set read data only Set to true, to advise the Reader only to read data values for cells...
getIncludeCharts()
Read charts in workbook? If this is true, then the Reader will include any charts that exist in the w...
getLoadSheetsOnly()
Get which sheets to load Returns either an array of worksheet names (the list of worksheets that shou...
__construct()
IReader constructor.
load($pFilename)
Loads PhpSpreadsheet from file.
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.
getReadEmptyCells()
Read empty cells? If this is true (the default), then the Reader will read data values for all cells...
canRead($pFilename)
Can the current IReader read the file?
setReadFilter(IReadFilter $pValue)
Set read filter.