Created
November 17, 2014 00:24
-
-
Save bouassaba/dceef16e6933eb5559f8 to your computer and use it in GitHub Desktop.
Magento get common URLs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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