Filters the rows of this iterator with a callback function.
Returns an intance of GALResultIterator that contains all rows of this iterator where the callback function returned TRUE. Signature of the callback function: bool callback(GALRow $row)
Tags:
Parameters:
Returns a new ResultIterator on the data of this iterator.
This method creates a new iterator that accesses the same data as this iterator. If you want to share data between multiple modules, using the same iterator would be inconvenient because the internal pointer is changed by both modules. Because every GALResultIterator provides access to a row with a certain index via the row() method, it is possible to keep a pointer for each module. The iterator returned by this method provides such an external pointer.
Tags:
array verticalFetch(
string
$field)
|
|
Returns the value of a field in all rows of this iterator.
This method fetches the value of the given field from all rows that are in this iterator.
Tags:
Parameters: