mirror of
https://github.com/friendica/friendica
synced 2025-04-26 02:30:11 +00:00
Add list command
This commit is contained in:
parent
ecf7f40704
commit
2adc6a0974
5 changed files with 95 additions and 17 deletions
|
@ -30,10 +30,13 @@ use Friendica\Util\Strings;
|
|||
*/
|
||||
class Pager
|
||||
{
|
||||
/** @var int Default count of items per page */
|
||||
const ITEMS_PER_PAGE = 50;
|
||||
|
||||
/** @var integer */
|
||||
private $page = 1;
|
||||
/** @var integer */
|
||||
protected $itemsPerPage = 50;
|
||||
protected $itemsPerPage = self::ITEMS_PER_PAGE;
|
||||
/** @var string */
|
||||
protected $baseQueryString = '';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue