3 * Class to walk into a list of User objects.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
23 class UserArrayFromResult
extends UserArray
implements Countable
{
32 * @param ResultWrapper $res
34 function __construct( $res ) {
37 $this->setCurrent( $this->res
->current() );
41 * @param bool|stdClass $row
44 protected function setCurrent( $row ) {
45 if ( $row === false ) {
46 $this->current
= false;
48 $this->current
= User
::newFromRow( $row );
55 public function count() {
56 return $this->res
->numRows();
63 return $this->current
;
71 $row = $this->res
->next();
72 $this->setCurrent( $row );
79 $this->setCurrent( $this->res
->current() );
86 return $this->current
!== false;