function getCurrentUrl(){ global $c; $nh = Loader::helper('navigation'); $cpl = $nh->getCollectionURL($c); return $cpl; }
<?php function curPageURL() { $pageURL = 'http'; if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";} $pageURL .= "://"; if ($_SERVER["SERVER_PORT"] != "80") { $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"]; } else { $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]; } return $pageURL; } ?>
<?php echo curPageURL();?>
function getCurrentUrl(){ $currentPage = Page::getCurrentPage(); Loader::helper('navigation); return NavigationHelper::getLinkToCollection($currentPage, true); }
$c->getCollectionPath();
public function on_start() { global $c; $this->set('currentPath',$c->getCollectionPath()); // or $this->set('currentUrl',Loader::helper('navigation')->getCollectionPath($c)); }
<?php echo $currentUrl; ?>