Поиск…


URL-адрес корзины

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

ИЛИ ЖЕ

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

Оформить заказ

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

ИЛИ ЖЕ

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

Войти

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

ИЛИ ЖЕ

Mage :: помощник ( 'клиент / данные') -> getLoginUrl ();

Выходной URL

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

ИЛИ ЖЕ

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

Забыли пароль

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

ИЛИ ЖЕ

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

URL-адрес клиента клиента

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

ИЛИ ЖЕ

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

Медиа, JS, URL-адрес кожи

Чтобы получить URL-адрес на страницах STATIC BLOCK или CMS

Чтобы получить URL-адрес SKIN

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

Чтобы получить медиа-URL

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

Чтобы получить адрес магазина

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

Чтобы получить базовый URL-адрес

{{base url=”}}

Получить путь URL в PHTML

Незащищенный URL-адрес Skin

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

URL защищенной оболочки

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

Получить текущий URL

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

Получить домашний URL

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

Получить URL-адрес Magento Media

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

Получить URL-адрес Magento Skin Url

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

Получить адрес магазина Magento

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

Получить Magento Js Url

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


Modified text is an extract of the original Stack Overflow Documentation
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow