src/PhpSpreadsheet/Reader/Ods.php 1 location
|
@@ 452-457 (lines=6) @@
|
449 |
|
foreach ($childNode->childNodes as $key => $cellData) { |
450 |
|
// @var \DOMElement $cellData |
451 |
|
|
452 |
|
if ($this->getReadFilter() !== null) { |
453 |
|
if (!$this->getReadFilter()->readCell($columnID, $rowID, $worksheetName)) { |
454 |
|
++$columnID; |
455 |
|
|
456 |
|
continue; |
457 |
|
} |
458 |
|
} |
459 |
|
|
460 |
|
// Initialize variables |
src/PhpSpreadsheet/Reader/Xml.php 1 location
|
@@ 618-623 (lines=6) @@
|
615 |
|
} |
616 |
|
$cellRange = $columnID . $rowID; |
617 |
|
|
618 |
|
if ($this->getReadFilter() !== null) { |
619 |
|
if (!$this->getReadFilter()->readCell($columnID, $rowID, $worksheetName)) { |
620 |
|
++$columnID; |
621 |
|
|
622 |
|
continue; |
623 |
|
} |
624 |
|
} |
625 |
|
|
626 |
|
if (isset($cell_ss['HRef'])) { |