--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/vendor/bundles/Pagerfanta/Adapter/NullAdapter.php Fri Oct 21 17:10:54 2011 +0200
@@ -0,0 +1,63 @@
+<?php
+
+/*
+ * This file is part of the Pagerfanta package.
+ *
+ * (c) Pablo Díez <pablodip@gmail.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Pagerfanta\Adapter;
+
+/**
+ * NullAdapter.
+ *
+ * @author Benjamin Dulau <benjamin.dulau@anonymation.com>
+ */
+class NullAdapter implements AdapterInterface
+{
+ private $nbResults;
+
+ /**
+ * Constructor.
+ *
+ * @param integer $nbResults Total item count.
+ *
+ * @api
+ */
+ public function __construct($nbResults = 0)
+ {
+ $this->nbResults = (int) $nbResults;
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function getNbResults()
+ {
+ return $this->nbResults;
+ }
+
+ /**
+ * The following methods are derived from code of the Zend Framework
+ * Code subject to the new BSD license (http://framework.zend.com/license/new-bsd).
+ *
+ * Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
+ *
+ * {@inheritdoc}
+ *
+ */
+ public function getSlice($offset, $length)
+ {
+ if ($offset >= $this->getNbResults()) {
+ return array();
+ }
+
+ $remainItemCount = $this->getNbResults() - $offset;
+ $currentItemCount = $remainItemCount > $length ? $length : $remainItemCount;
+
+ return array_fill(0, $currentItemCount, null);
+ }
+}