1 | <?php |
||
12 | class Node |
||
13 | { |
||
14 | /** |
||
15 | * @var int |
||
16 | */ |
||
17 | protected $page = 1; |
||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $link = ''; |
||
23 | |||
24 | /** |
||
25 | * @var bool |
||
26 | */ |
||
27 | protected $is_current = false; |
||
28 | |||
29 | /** |
||
30 | * @param int $page |
||
31 | * @param string $link |
||
32 | * @param bool $is_current |
||
33 | */ |
||
34 | 22 | public function __construct($page = 1, $link = '', $is_current = false) |
|
40 | |||
41 | /** |
||
42 | * @return bool |
||
43 | */ |
||
44 | 8 | public function isCurrent() |
|
48 | |||
49 | /** |
||
50 | * @return string |
||
51 | */ |
||
52 | 16 | public function getLink() |
|
56 | |||
57 | /** |
||
58 | * @return int |
||
59 | */ |
||
60 | 22 | public function getPage() |
|
64 | } |
||
65 |