magento
URLs específicas
Buscar..
Carro url
$this->helper('checkout/url')->getCartUrl();
O
Mage::helper('checkout/url')->getCartUrl();
URL de salida
$this->helper('checkout/url')->getCheckoutUrl();
O
Mage::helper('checkout/url')->getCheckoutUrl();
URL de inicio de sesión
$this->helper('customer/data')->getLoginUrl();
O
Mage :: helper ('customer / data') -> getLoginUrl ();
URL de cierre de sesión
$this->helper('customer/data')->getLogoutUrl();
O
Mage::helper('customer/data')->getLogoutUrl();
Olvidé la contraseña url
$this->helper('customer/data')->getForgotPasswordUrl();
O
Mage::helper('customer/data')->getForgotPasswordUrl();
Cuenta del cliente url
$this->helper('customer/data')->getAccountUrl();
O
Mage::helper('customer/data')->getAccountUrl();
Media, JS, URL de la piel
Para recuperar la ruta de la URL en BLOQUE ESTÁTICO o en páginas CMS
Para obtener la URL de SKIN
{{skin url=’images/sampleimage.jpg’}}
Para obtener la URL de los medios
{{media url=’/sampleimage.jpg’}}
Para obtener la URL de la tienda
{{store url=’mypage.html’}}
Para obtener la URL base
{{base url=”}}
Para recuperar la ruta de la URL en PHTML
URL de piel no segura
<?php echo $this->getSkinUrl(‘images/sampleimage.jpg’) ?>
URL de piel segura
<?php echo $this->getSkinUrl(‘images/ sampleimage.gif’,array(‘_secure’=>true)) ?>
Obtener URL actual
<?php $current_url = Mage::helper(‘core/url’)->getCurrentUrl();?>
Obtener URL de inicio
<?php $home_url = Mage::helper(‘core/url’)->getHomeUrl();?>
Obtener Magento Media Url
<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK);?>
<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>
Obtener Magento Skin Url
<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN);?>
Obtener Magento Store Url
<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);?>
Obtener Magento Js Url
<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS);?>