Opencart Müşteri Bilgileri (ad, soyad, eposta, telefon vb.)

Opencart Get Customer Info (firstname, lastname, email, telephone etc.)

Opencart sistemi üzerinde oturum açmış olan müşteriye ait bilgileri almak için aşağıdaki metodları kullanabilirsiniz. Bunları system/library/cart/customer.php (versiyona göre customer.php yolu değişmektedir) içerisinde detaylı olarak görebilirsiniz.

$customer_is_logged      = $this->customer->isLogged();
$customer_id             = $this->customer->getId();
$customer_first_name     = $this->customer->getFirstName();
$customer_last_name      = $this->customer->getLastName();
$customer_group_id       = $this->customer->getGroupId();
$customer_email          = $this->customer->getEmail();
$customer_telephone      = $this->customer->getTelephone();
$customer_fax            = $this->customer->getFax();
$customer_newsletter     = $this->customer->getNewsletter(); //müşterinin bülten aboneliği var mı (1,0)
$customer_address_id     = $this->customer->getAddressId();
$customer_balance        = $this->customer->getBalance(); //müşterinin toplam mağaza kredisi tutarı
$customer_reward_points  = $this->customer->getRewardPoints(); //müşterinin kazandığı puanların toplamı



Yorumlar