diff -r bd595ad770fc -r 1c2f13fd785c web/enmi/Zend/Paginator/Adapter/Array.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/enmi/Zend/Paginator/Adapter/Array.php Thu Jan 20 19:30:54 2011 +0100 @@ -0,0 +1,81 @@ +_array = $array; + $this->_count = count($array); + } + + /** + * Returns an array of items for a page. + * + * @param integer $offset Page offset + * @param integer $itemCountPerPage Number of items per page + * @return array + */ + public function getItems($offset, $itemCountPerPage) + { + return array_slice($this->_array, $offset, $itemCountPerPage); + } + + /** + * Returns the total number of rows in the array. + * + * @return integer + */ + public function count() + { + return $this->_count; + } +} \ No newline at end of file