Recherche…


URL du panier

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

OU

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

URL de paiement

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

OU

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

URL de connexion

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

OU

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

URL de déconnexion

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

OU

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

Mot de passe oublié? URL

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

OU

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

URL du client

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

OU

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

Media, JS, URL du skin

Récupérer le chemin de l'URL dans les pages STATIC BLOCK ou CMS

Pour obtenir l'URL de SKIN

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

Pour obtenir l'URL du média

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

Pour obtenir l'URL du magasin

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

Pour obtenir l'URL de base

{{base url=”}}

POUR récupérer le chemin d'URL dans PHTML

URL de peau non sécurisée

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

URL de peau sécurisée

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

Obtenir l'URL actuelle

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

Obtenir l'URL de la maison

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

Obtenir l'URL des médias de Magento

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

Get Magento Skin Url

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

Obtenir l'URL du magasin Magento

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

Obtenez Magento Js Url

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


Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow