magento
URL specifici
Ricerca…
Carrello url
$this->helper('checkout/url')->getCartUrl();
O
Mage::helper('checkout/url')->getCartUrl();
URL di verifica
$this->helper('checkout/url')->getCheckoutUrl();
O
Mage::helper('checkout/url')->getCheckoutUrl();
Login url
$this->helper('customer/data')->getLoginUrl();
O
Mage :: helper ( 'cliente / dati') -> getLoginUrl ();
URL di disconnessione
$this->helper('customer/data')->getLogoutUrl();
O
Mage::helper('customer/data')->getLogoutUrl();
Hai dimenticato l'URL della password
$this->helper('customer/data')->getForgotPasswordUrl();
O
Mage::helper('customer/data')->getForgotPasswordUrl();
URL cliente account
$this->helper('customer/data')->getAccountUrl();
O
Mage::helper('customer/data')->getAccountUrl();
Media, JS, Skin URL
Per recuperare il percorso URL in STATIC BLOCK o pagine CMS
Per ottenere l'URL SKIN
{{skin url=’images/sampleimage.jpg’}}
Per ottenere l'URL del supporto
{{media url=’/sampleimage.jpg’}}
Per ottenere l'URL del negozio
{{store url=’mypage.html’}}
Per ottenere l'URL di base
{{base url=”}}
PER Recuperare il percorso dell'URL in PHTML
URL skin non sicuro
<?php echo $this->getSkinUrl(‘images/sampleimage.jpg’) ?>
Secure Skin URL
<?php echo $this->getSkinUrl(‘images/ sampleimage.gif’,array(‘_secure’=>true)) ?>
Ottieni l'URL corrente
<?php $current_url = Mage::helper(‘core/url’)->getCurrentUrl();?>
Ottieni l'URL della tua home
<?php $home_url = Mage::helper(‘core/url’)->getHomeUrl();?>
Ottieni l'URL multimediale di Magento
<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK);?>
<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>
Ottieni l'Url Skin Magento
<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN);?>
Ottieni l'URL del negozio Magento
<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);?>
Ottieni Magento Js Url
<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS);?>