_uri=new URI("Gallery","/gallery","/images/photo.svg"); } public function GetItems() { $repo=new AlbumRepository(); $albums=$repo->GetAlbums(); $uris=array(); foreach ($albums as $a) $uris[]=new URI($a->AlbumTitle,'view/'.$a->AlbumUrl); $uris[]=new URI("View all",""); return $uris; } public function GetURI() { return $this->_uri; } }