mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 21:02:41 +01:00
23786784ef
Summary: Adds the Balanced PHP API to externals/. Ref T2787. Test Plan: Used in next diff. Reviewers: btrahan, chad Reviewed By: chad CC: aran, aurelijus Maniphest Tasks: T2787 Differential Revision: https://secure.phabricator.com/D5764
45 lines
922 B
PHP
45 lines
922 B
PHP
<?php
|
|
|
|
namespace RESTful;
|
|
|
|
class ItemizationIterator implements \Iterator
|
|
{
|
|
protected $_page,
|
|
$_offset = 0;
|
|
|
|
public function __construct($resource, $uri, $data = null)
|
|
{
|
|
$this->_page = new Page($resource, $uri, $data);
|
|
}
|
|
|
|
// Iterator
|
|
public function current()
|
|
{
|
|
return $this->_page->items[$this->_offset];
|
|
}
|
|
|
|
public function key()
|
|
{
|
|
return $this->_page->offset + $this->_offset;
|
|
}
|
|
|
|
public function next()
|
|
{
|
|
$this->_offset += 1;
|
|
if ($this->_offset >= count($this->_page->items)) {
|
|
$this->_offset = 0;
|
|
$this->_page = $this->_page->next();
|
|
}
|
|
}
|
|
|
|
public function rewind()
|
|
{
|
|
$this->_page = $this->_page->first();
|
|
$this->_offset = 0;
|
|
}
|
|
|
|
public function valid()
|
|
{
|
|
return ($this->_page != null && $this->_offset < count($this->_page->items));
|
|
}
|
|
}
|