magento
特定のURL
サーチ…
カートのURL
$this->helper('checkout/url')->getCartUrl();
または
Mage::helper('checkout/url')->getCartUrl();
チェックアウトURL
$this->helper('checkout/url')->getCheckoutUrl();
または
Mage::helper('checkout/url')->getCheckoutUrl();
ログインURL
$this->helper('customer/data')->getLoginUrl();
または
Mage :: helper( 'customer / data') - > getLoginUrl();
ログアウトURL
$this->helper('customer/data')->getLogoutUrl();
または
Mage::helper('customer/data')->getLogoutUrl();
パスワードの忘れたURL
$this->helper('customer/data')->getForgotPasswordUrl();
または
Mage::helper('customer/data')->getForgotPasswordUrl();
アカウントの顧客URL
$this->helper('customer/data')->getAccountUrl();
または
Mage::helper('customer/data')->getAccountUrl();
メディア、JS、スキンURL
STATIC BLOCKまたはCMSページのURLパスを取得するには
SKIN URLを取得するには
{{skin url=’images/sampleimage.jpg’}}
メディアのURLを取得するには
{{media url=’/sampleimage.jpg’}}
店舗URLを取得するには
{{store url=’mypage.html’}}
ベースURLを取得するには
{{base url=”}}
TO:PHTMLでURLパスを取得する
保護されていないスキンURL
<?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();?>
Magento Media Urlを取得
<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK);?>
<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);?>
Magento Skin Urlを取得
<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN);?>
Magento Store URLを取得
<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);?>
Magento Js Urlを取得
<?php Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS);?>