20 lines
365 B
PHP
20 lines
365 B
PHP
|
<?php
|
||
|
|
||
|
namespace Icinga\Data;
|
||
|
|
||
|
/**
|
||
|
* Interface for browsing data
|
||
|
*/
|
||
|
interface Browsable
|
||
|
{
|
||
|
/**
|
||
|
* Paginate data
|
||
|
*
|
||
|
* @param int $itemsPerPage Number of items per page
|
||
|
* @param int $pageNumber Current page number
|
||
|
*
|
||
|
* @return Zend_Paginator
|
||
|
*/
|
||
|
public function paginate($itemsPerPage = null, $pageNumber = null);
|
||
|
}
|