Suche…


Warenkorb-URL

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

ODER

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

Checkout-URL

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

ODER

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

Login-URL

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

ODER

Mage :: Helper ('Kunde / Daten') -> getLoginUrl ();

Logout-URL

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

ODER

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

Passwort-URL vergessen

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

ODER

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

URL des Kontokunden

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

ODER

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

Medien, JS, Skin-URL

URL-Pfad in STATIC BLOCK- oder CMS-Seiten abrufen

So erhalten Sie die URL für die URL

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

So rufen Sie die Medien-URL ab

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

Store-URL abrufen

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

Basis-URL erhalten

{{base url=”}}

URL-Pfad in PHTML abrufen

Nicht sichere Skin-URL

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

Sichere Skin-URL

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

Aktuelle URL abrufen

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

Home-URL abrufen

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

Holen Sie sich die Magento Media-URL

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

Holen Sie sich Magento Skin Url

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

Holen Sie sich die Magento Store-URL

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

Holen Sie sich Magento Js Url

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


Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow