| 1 | <?php |
||
| 11 | class Builder |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * The number of pages displayed in the navigation. |
||
| 15 | * |
||
| 16 | * @var int |
||
| 17 | */ |
||
| 18 | protected $max_navigate = Configuration::DEFAULT_LIST_LENGTH; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param int $max_navigate |
||
| 22 | */ |
||
| 23 | 2 | public function __construct($max_navigate) |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @param int $total_pages |
||
| 30 | * @param int $current_page |
||
| 31 | * |
||
| 32 | * @return Configuration |
||
| 33 | */ |
||
| 34 | 2 | public function create($total_pages = 0, $current_page = 1) |
|
| 39 | } |
||
| 40 |