To find the URL path in Array
$currentUrl = Mage::helper('core/url')->getCurrentUrl();
$url = Mage::getSingleton('core/url')->parseUrl($currentUrl);
$path = $url->getPath();
$blogPaths = array('/checkout/onepage/','/checkout/cart/','/checkout/onepage/index/');
if(in_array($path,$blogPaths))
{
}
$url = Mage::getSingleton('core/url')->parseUrl($currentUrl);
$path = $url->getPath();
$blogPaths = array('/checkout/onepage/','/checkout/cart/','/checkout/onepage/index/');
if(in_array($path,$blogPaths))
{
}
Comments
Post a Comment