1 | <?php |
||
23 | class NavHorizontal extends Nav implements NavInterface |
||
24 | { |
||
25 | |||
26 | const TYPE = 'horizontal'; |
||
27 | |||
28 | /** |
||
29 | * Move the pointer to the starting area of the "next" data set. |
||
30 | * |
||
31 | * @return $this |
||
32 | */ |
||
33 | public function next() |
||
41 | |||
42 | /** |
||
43 | * Move pointer along the current X axis. For horizontal nav, this is down |
||
44 | * |
||
45 | * @param integer $placesToMove |
||
46 | * @return $this |
||
47 | */ |
||
48 | public function axisXMove($placesToMove = 1) |
||
54 | |||
55 | /** |
||
56 | * Move pointer along the current Y axis. For horizontal nav, this is right |
||
57 | * |
||
58 | * @param integer $placesToMove |
||
59 | * @return $this |
||
60 | */ |
||
61 | public function axisYMove($placesToMove = 1) |
||
67 | } |
||
68 |