수색…


장바구니 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);?>


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow