$_query
$_query : mixed
Rdo Query
Iterator for collections of Rdo objects.
$_mapper : \Horde_Rdo_Mapper
Rdo Mapper
$_current : \Horde_Rdo_Base
Current object
__construct(mixed $query, \Horde_Rdo_Mapper $mapper = null)
Constructor.
mixed | $query | The query to run when results are requested. Can be a Horde_Rdo_Query object, a literal SQL query, or a tuple containing an SQL string and an array of bind parameters to use. |
\Horde_Rdo_Mapper | $mapper | Mapper to create objects for this list from. |
next() : \Horde_Rdo_Base|null
Implementation of the next() method.
The next Rdo object in the set or null if no more results.
offsetGet(integer $offset) : \Horde_Rdo_Base
Implementation of the offsetGet() method for ArrayAccess This method is executed when using isset() or empty() on Horde_Rdo_List objects
integer | $offset | The offset to retrieve. |
An entity object at the offset position or null
offsetSet(\Horde_Rdo_Base $offset, \Horde_Rdo_Base $item) : \Horde_Rdo_Base
Not implemented.
Stub of the offsetSet() method for ArrayAccess This method is executed when adding an item to the Horde_Rdo_List
\Horde_Rdo_Base | $offset | The item to add to the list. |
\Horde_Rdo_Base | $item | The item to add to the list. |
An entity object at the offset position or null
offsetUnset(integer $offset) : \Horde_Rdo_Base
Not implemented.
Stub of the offsetUnset() method for ArrayAccess This method is executed when calling unset on a Horde_Rdo_List index
integer | $offset | The offset to unset. |
An entity object at the offset position or null