MediaWiki master
Pager.php
Go to the documentation of this file.
1<?php
11namespace MediaWiki\Pager;
12
14
24interface Pager {
26 public function getNavigationBar();
27
29 public function getBody();
30}
31
33class_alias( Pager::class, 'Pager' );
Build the navigation for a pager, with links to prev/next page, links to change limits,...
Basic pager interface for efficient paging through SQL queries.
Definition Pager.php:24