ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
MyReadFilter Class Reference

PHPExcel_IOFactory. More...

+ Inheritance diagram for MyReadFilter:
+ Collaboration diagram for MyReadFilter:

Public Member Functions

 readCell ($column, $row, $worksheetName='')
 Should this cell be read? More...
 

Detailed Description

PHPExcel_IOFactory.

Definition at line 45 of file 24readfilter.php.

Member Function Documentation

◆ readCell()

MyReadFilter::readCell (   $column,
  $row,
  $worksheetName = '' 
)

Should this cell be read?

Parameters
$columnString column index
$rowRow index
$worksheetNameOptional worksheet name
Returns
boolean

Implements PHPExcel_Reader_IReadFilter.

Definition at line 47 of file 24readfilter.php.

References $row.

47  {
48  // Read title row and rows 20 - 30
49  if ($row == 1 || ($row >= 20 && $row <= 30)) {
50  return true;
51  }
52 
53  return false;
54  }

The documentation for this class was generated from the following file: