1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- /*
- * This file is part of the Sonata package.
- *
- * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- *
- */
- namespace Sonata\AdminBundle\Datagrid;
- interface PagerInterface
- {
- /**
- * Initialize the Pager.
- *
- * @return void
- */
- public function init();
- /**
- * Returns the maximum number of results per page.
- *
- * @return integer
- */
- public function getMaxPerPage();
- /**
- * Sets the maximum number of results per page.
- *
- * @param integer $max
- */
- public function setMaxPerPage($max);
- /**
- * Sets the current page.
- *
- * @param integer $page
- */
- public function setPage($page);
- /**
- * Set query
- *
- * @param mixed $query
- */
- public function setQuery($query);
- /**
- * Returns an array of results on the given page.
- *
- * @return array
- */
- public function getResults();
- }
|