Get info about current user in Opencart

opencart

I have been work on a module with Opencart and I was wondering how I can get current user information.

I was thinking something like this: $this->getuserid();

Best Answer

I just found it out:

$this->customer->getFirstName();
$this->customer->getLastName();
$this->customer->getEmail();
$this->customer->getTelephone();
$this->customer->getFax();

and so on.

The source code (including the other methods available) is located in the system/library/customer.php file.

You can use the methods just anywhere.

Hope this helps.

Related Topic