2013-01-06 66 views

回答

2
Mage::getSingleton('customer/session')->isLoggedIn(); 

Mage::helper('customer')->isLoggedIn(); 

第二種方法調用第一 - see here


因此,使用輔助方法爲例...

$isLoggedIn = Mage::helper('customer')->isLoggedIn(); 
if (! $isLoggedIn) { 
    echo "Please log in"; 
} 
+0

您可以添加,除非語句和回聲? :) –

+0

好的,已經爲你更新了答案 –

0

用戶客戶幫手:

$this->helper('customer')->isLoggedIn()