You are here

public function FeedsExcelParserIReadFilter::__construct in Feeds Excel 7.2

File

./FeedsExcelParserIReadFilter.inc, line 17
Contains FeedsExcelParserIReadFilter.

Class

FeedsExcelParserIReadFilter
Provides chunk reader for Excel files.

Code

public function __construct($startRow = 0, $chunkSize = 0) {
  $this->startRow = $startRow;
  $this->endRow = $startRow + $chunkSize;
  $this->rowCounter =& drupal_static('feeds_excel_parser_row_counter');
  $this->rowCounter = 0;
}