Public Member Functions | |
getCurrentUrl () | |
getCurrentBase64Url () | |
getEncodedUrl ($url=null) | |
getHomeUrl () | |
Protected Member Functions | |
_prepareString ($string) |
Definition at line 34 of file Url.php.
_prepareString | ( | $ | string | ) | [protected] |
getCurrentBase64Url | ( | ) |
Retrieve current url in base64 encoding
Definition at line 52 of file Url.php.
00053 { 00054 return $this->urlEncode($this->getCurrentUrl()); 00055 }
getCurrentUrl | ( | ) |
getEncodedUrl | ( | $ | url = null |
) |
Definition at line 57 of file Url.php.
00058 { 00059 if (!$url) { 00060 $url = $this->getCurrentUrl(); 00061 } 00062 return $this->urlEncode($url); 00063 }
getHomeUrl | ( | ) |
Retrieve homepage url
Definition at line 70 of file Url.php.
00071 { 00072 return Mage::getBaseUrl(); 00073 }