HomeNav.php 317 B

123456789101112131415161718
  1. <?php
  2. class HomeNav implements INavigationController{
  3. private $_uri;
  4. public function __construct() {
  5. $this->_uri=new URI("Home","/","images/home.svg");
  6. }
  7. public function GetItems() {
  8. return array(
  9. new URI("Test","test")
  10. );
  11. }
  12. public function GetURI() {
  13. return $this->_uri;
  14. }
  15. }