Skip to content

Instantly share code, notes, and snippets.

@bouassaba
Created November 17, 2014 00:24
Show Gist options
  • Save bouassaba/dceef16e6933eb5559f8 to your computer and use it in GitHub Desktop.
Save bouassaba/dceef16e6933eb5559f8 to your computer and use it in GitHub Desktop.
Magento get common URLs
// Get Base Url
Mage::getBaseUrl();
// Get Skin Url
Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN);
// Unsecure Skin Url
$this->getSkinUrl('images/imagename.jpg');
// Secure Skin Url
$this->getSkinUrl('images/imagename.gif', array('_secure'=>true));
// Get Media Url
Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);
// Get Js Url
Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS);
// Get Store Url
Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);
// Get Current Url
Mage::helper('core/url')->getCurrentUrl();
// --- Get Url in cms pages or static blocks ---
// Get Base Url
// {{store url=""}}
// Get Skin Url
// {{skin url='images/imagename.jpg'}}
// Get Media Url
// {{media url='/imagename.jpg'}}
// Get Store Url
// {{store url='mypage.html'}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment