1 | <?php |
||
6 | final class Links |
||
7 | { |
||
8 | |||
9 | const FIRST_PAGE = 'first'; |
||
10 | const NEXT_PAGE = 'next'; |
||
11 | const CURRENT_PAGE = 'self'; |
||
12 | const LAST_PAGE = 'last'; |
||
13 | |||
14 | /** |
||
15 | * @var Array |
||
16 | */ |
||
17 | private $links = array(); |
||
18 | |||
19 | 3 | public function __construct(array $links) |
|
25 | |||
26 | 1 | public function getLink($rel = self::CURRENT_PAGE) |
|
34 | |||
35 | public function __get($rel) |
||
46 | |||
47 | } |
||
48 |