Wednesday 23 May 2007 1:50:54 pm
Hi. I'm working with a extension now. I'm trying to fetch user information by e-mail. so, i'm doing something like
$node=eZUser::fetchByEmail ($http->postVariable("email-field"));
if i do print_r($node); i get
ezuser Object ( [PersistentDataDirty] => [Login] => carlos [Email] => carlos@desorden.net [PasswordHash] => 3e4146001e197b972cd72a7ee7f59679 [PasswordHashType] => 2 [Groups] => [OriginalPassword] => [OriginalPasswordConfirm] => [ContentObjectID] => 62 )
But what i really want is to get the information of the node wich "contains" this ezuser. How can i get to the signature and other data of this user from here?. or maybe should i try to fetch object and do a filter by attribute?. Thank you.
|