Returns an array of nav links. Each array item will be an InvNavLink object. If $refresh=true, the method refreshes the nav object's internal cache from the database first.
Array of Link Objects
ARRAY of InvLink OBJECTs
$nav->getLinks()
if($nav = $this->getNav(2)){
foreach($nav->getLinks() as $link){
echo $link->getTitle();
}
}