Szukaj…


URL koszyka

$this->helper('checkout/url')->getCartUrl();

LUB

Mage::helper('checkout/url')->getCartUrl();

URL kasy

$this->helper('checkout/url')->getCheckoutUrl();

LUB

Mage::helper('checkout/url')->getCheckoutUrl();

Adres URL logowania

$this->helper('customer/data')->getLoginUrl();

LUB

Mage :: helper ('customer / data') -> getLoginUrl ();

Wyloguj się

$this->helper('customer/data')->getLogoutUrl();

LUB

Mage::helper('customer/data')->getLogoutUrl();

Zapomniałem adresu URL hasła

$this->helper('customer/data')->getForgotPasswordUrl();

LUB

Mage::helper('customer/data')->getForgotPasswordUrl();

Adres URL klienta konta

$this->helper('customer/data')->getAccountUrl();

LUB

Mage::helper('customer/data')->getAccountUrl();

Media, JS, URL skóry

Aby pobrać ścieżkę URL na stronach STATIC BLOCK lub CMS

Aby uzyskać URL SKIN

{{skin url=’images/sampleimage.jpg’}}

Aby uzyskać adres URL multimediów

{{media url=’/sampleimage.jpg’}}

Aby uzyskać adres URL sklepu

{{store url=’mypage.html’}}

Aby uzyskać podstawowy adres URL

{{base url=”}}

TO Pobierz ścieżkę URL w PHTML

Niezabezpieczony adres URL skóry

<?php echo $this->getSkinUrl(‘images/sampleimage.jpg’) ?>

Bezpieczny adres URL skóry

<?php echo $this->getSkinUrl(‘images/ sampleimage.gif’,array(‘_secure’=>true)) ?>

Uzyskaj aktualny adres URL

<?php $current_url = Mage::helper(‘core/url’)->getCurrentUrl();?>

Uzyskaj domowy adres URL

<?php $home_url = Mage::helper(‘core/url’)->getHomeUrl();?>

Uzyskaj Magento Media Url

<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK);?>
<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>

Uzyskaj Magento Skin Url

<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN);?>

Uzyskaj adres URL sklepu Magento

<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);?>

Uzyskaj Magento Js Url

<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS);?>


Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow