function ExcelRange::isRowInAnyRange in Feeds Excel 7
Same name and namespace in other branches
- 6 includes/ExcelRange.inc \ExcelRange::isRowInAnyRange()
Retrieve if a cell of the row is present in any range.
File
- includes/
ExcelRange.inc, line 232
Class
Code
function isRowInAnyRange($row) {
foreach ($this->ranges as $range) {
if ($this
->isRowInRange($range, $row)) {
return TRUE;
}
}
return FALSE;
}