*/ class Mage_Core_Helper_Url extends Mage_Core_Helper_Abstract { /** * Retrieve current url * * @return string */ public function getCurrentUrl() { $request = Mage::app()->getRequest(); $port = $request->getServer('SERVER_PORT'); if ($port) { $defaultPorts = array( Mage_Core_Controller_Request_Http::DEFAULT_HTTP_PORT, Mage_Core_Controller_Request_Http::DEFAULT_HTTPS_PORT ); $port = (in_array($port, $defaultPorts)) ? '' : ':' . $port; } $url = $request->getScheme() . '://' . $request->getHttpHost() . $port . $request->getServer('REQUEST_URI'); return $url; // return $this->_getUrl('*/*/*', array('_current' => true, '_use_rewrite' => true)); } /** * Retrieve current url in base64 encoding * * @return string */ public function getCurrentBase64Url() { return $this->urlEncode($this->getCurrentUrl()); } public function getEncodedUrl($url=null) { if (!$url) { $url = $this->getCurrentUrl(); } return $this->urlEncode($url); } /** * Retrieve homepage url * * @return string */ public function getHomeUrl() { return Mage::getBaseUrl(); } protected function _prepareString($string) { $string = preg_replace('#[^0-9a-z]+#i', '-', $string); $string = strtolower($string); $string = trim($string, '-'); return $string; } /** * Add request parameter into url * * @param $url string * @param $param array( 'key' => value ) * @return string */ public function addRequestParam($url, $param) { $startDelimiter = (false === strpos($url,'?'))? '?' : '&'; $arrQueryParams = array(); foreach($param as $key=>$value) { if (is_numeric($key) || is_object($value)) { continue; } if (is_array($value)) { // $key[]=$value1&$key[]=$value2 ... $arrQueryParams[] = $key . '[]=' . implode('&' . $key . '[]=', $value); } elseif (is_null($value)) { $arrQueryParams[] = $key; } else { $arrQueryParams[] = $key . '=' . $value; } } $url .= $startDelimiter . implode('&', $arrQueryParams); return $url; } /** * Remove request parameter from url * * @param string $url * @param string $paramKey * @return string */ public function removeRequestParam($url, $paramKey, $caseSensitive = false) { $regExpression = '/\\?[^#]*?(' . preg_quote($paramKey, '/') . '\\=[^#&]*&?)/' . ($caseSensitive ? '' : 'i'); while (preg_match($regExpression, $url, $mathes) != 0) { $paramString = $mathes[1]; if (preg_match('/&$/', $paramString) == 0) { $url = preg_replace('/(&|\\?)?' . preg_quote($paramString, '/') . '/', '', $url); } else { $url = str_replace($paramString, '', $url); } } return $url; } }