Stworzyłem niestandardowy moduł, w którym mam plik obserwatora. Muszę wyświetlić wszystkie informacje o zalogowanym użytkowniku.
Stworzyłem niestandardowy moduł, w którym mam plik obserwatora. Muszę wyświetlić wszystkie informacje o zalogowanym użytkowniku.
Odpowiedzi:
Wykorzystaj wydarzenie customer_login
:
<customer_login>
<observers>
<yourobservername>
<type>model</type>
<class>yourmodule/path_to_class</class>
<method>customerLogin</method>
</yourobservername>
</observers>
</customer_login>
Twoja klasa obserwatorów wyglądałaby tak:
class YourCompany_YourModule_Model_Observer
{
public function customerLogin($observer)
{
$customer = $observer->getCustomer();
}
}
Spróbuj tego
if($customer = Mage::getSingleton('customer/session')->isLoggedIn()) {
$customer = Mage::getSingleton('customer/session')->getCustomer();
$customerData = Mage::getModel('customer/customer')->load($customer->getId())->getData();
//for firstname
$customerFirstName = $customerData['firstname'];
}
Mage::getSingleton('customer/session')->getCustomer()
wystarczy, aby uzyskać dane klienta, to po co ponownie ładować instancję klienta?