1 | <?php |
||
17 | class Builder |
||
18 | { |
||
19 | /** |
||
20 | * The number of pages displayed in the navigation |
||
21 | * |
||
22 | * @var int |
||
23 | */ |
||
24 | protected $max_navigate = Configuration::DEFAULT_LIST_LENGTH; |
||
25 | |||
26 | /** |
||
27 | * @param int $max_navigate |
||
28 | */ |
||
29 | 2 | public function __construct($max_navigate) |
|
33 | |||
34 | /** |
||
35 | * @param int $total_pages |
||
36 | * @param int $current_page |
||
37 | * |
||
38 | * @return Configuration |
||
39 | */ |
||
40 | 2 | public function paginate($total_pages = 0, $current_page = 1) { |
|
44 | } |
||
45 |