account.php

来自「this the oscommerce 3.0 aplha 4」· PHP 代码 · 共 200 行

PHP
200
字号
<?php/*  $Id: account.php 1498 2007-03-29 14:04:50Z hpdl $  osCommerce, Open Source E-Commerce Solutions  http://www.oscommerce.com  Copyright (c) 2005 osCommerce  This program is free software; you can redistribute it and/or modify  it under the terms of the GNU General Public License v2 (1991)  as published by the Free Software Foundation.*/  class osC_Account {    function &getEntry() {      global $osC_Database, $osC_Customer;      $Qaccount = $osC_Database->query('select customers_gender, customers_firstname, customers_lastname, date_format(customers_dob, "%Y") as customers_dob_year, date_format(customers_dob, "%m") as customers_dob_month, date_format(customers_dob, "%d") as customers_dob_date, customers_email_address from :table_customers where customers_id = :customers_id');      $Qaccount->bindTable(':table_customers', TABLE_CUSTOMERS);      $Qaccount->bindInt(':customers_id', $osC_Customer->getID());      $Qaccount->execute();      return $Qaccount;    }    function getID($email_address) {      global $osC_Database;      $Quser = $osC_Database->query('select customers_id from :table_customers where customers_email_address = :customers_email_address limit 1');      $Quser->bindTable(':table_customers', TABLE_CUSTOMERS);      $Quser->bindValue(':customers_email_address', $email_address);      $Quser->execute();      if ($Quser->numberOfRows() === 1) {        return $Quser->valueInt('customers_id');      }      return false;    }    function createEntry($data) {      global $osC_Database, $osC_Session, $osC_Language, $osC_ShoppingCart, $osC_Customer, $osC_NavigationHistory;      $Qcustomer = $osC_Database->query('insert into :table_customers (customers_firstname, customers_lastname, customers_email_address, customers_newsletter, customers_status, customers_ip_address, customers_password, customers_gender, customers_dob, number_of_logons, date_account_created) values (:customers_firstname, :customers_lastname, :customers_email_address, :customers_newsletter, :customers_status, :customers_ip_address, :customers_password, :customers_gender, :customers_dob, :number_of_logons, :date_account_created)');      $Qcustomer->bindTable(':table_customers', TABLE_CUSTOMERS);      $Qcustomer->bindValue(':customers_firstname', $data['firstname']);      $Qcustomer->bindValue(':customers_lastname', $data['lastname']);      $Qcustomer->bindValue(':customers_email_address', $data['email_address']);      $Qcustomer->bindValue(':customers_newsletter', (isset($data['newsletter']) && ($data['newsletter'] == '1') ? '1' : ''));      $Qcustomer->bindValue(':customers_status', '1');      $Qcustomer->bindValue(':customers_ip_address', osc_get_ip_address());      $Qcustomer->bindValue(':customers_password', osc_encrypt_string($data['password']));      $Qcustomer->bindValue(':customers_gender', (((ACCOUNT_GENDER > -1) && isset($data['gender']) && (($data['gender'] == 'm') || ($data['gender'] == 'f'))) ? $data['gender'] : ''));      $Qcustomer->bindValue(':customers_dob', ((ACCOUNT_DATE_OF_BIRTH == '1') ? date('Ymd', $data['dob']) : ''));      $Qcustomer->bindInt(':number_of_logons', 0);      $Qcustomer->bindRaw(':date_account_created', 'now()');      $Qcustomer->execute();      if ($Qcustomer->affectedRows() === 1) {        $customer_id = $osC_Database->nextID();        if (SERVICE_SESSION_REGENERATE_ID == '1') {          $osC_Session->recreate();        }        $osC_Customer->setCustomerData($customer_id);// restore cart contents        $osC_ShoppingCart->synchronizeWithDatabase();        $osC_NavigationHistory->removeCurrentPage();// build the message content        if ((ACCOUNT_GENDER > -1) && isset($data['gender'])) {           if ($data['gender'] == 'm') {             $email_text = sprintf($osC_Language->get('email_addressing_gender_male'), $osC_Customer->getLastName()) . "\n\n";           } else {             $email_text = sprintf($osC_Language->get('email_addressing_gender_female'), $osC_Customer->getLastName()) . "\n\n";           }        } else {          $email_text = sprintf($osC_Language->get('email_addressing_gender_unknown'), $osC_Customer->getName()) . "\n\n";        }        $email_text .= sprintf($osC_Language->get('email_create_account_body'), STORE_NAME, STORE_OWNER_EMAIL_ADDRESS);        osc_email($osC_Customer->getName(), $osC_Customer->getEmailAddress(), sprintf($osC_Language->get('email_create_account_subject'), STORE_NAME), $email_text, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);        return true;      }      return false;    }    function saveEntry($data) {      global $osC_Database, $osC_Customer;      $Qcustomer = $osC_Database->query('update :table_customers set customers_gender = :customers_gender, customers_firstname = :customers_firstname, customers_lastname = :customers_lastname, customers_email_address = :customers_email_address, customers_dob = :customers_dob, date_account_last_modified = :date_account_last_modified where customers_id = :customers_id');      $Qcustomer->bindTable(':table_customers', TABLE_CUSTOMERS);      $Qcustomer->bindValue(':customers_gender', ((ACCOUNT_GENDER > -1) && isset($data['gender']) && (($data['gender'] == 'm') || ($data['gender'] == 'f'))) ? $data['gender'] : '');      $Qcustomer->bindValue(':customers_firstname', $data['firstname']);      $Qcustomer->bindValue(':customers_lastname', $data['lastname']);      $Qcustomer->bindValue(':customers_email_address', $data['email_address']);      $Qcustomer->bindValue(':customers_dob', (ACCOUNT_DATE_OF_BIRTH == '1') ? date('Ymd', $data['dob']) : '');      $Qcustomer->bindRaw(':date_account_last_modified', 'now()');      $Qcustomer->bindInt(':customers_id', $osC_Customer->getID());      $Qcustomer->execute();      if ($Qcustomer->affectedRows() === 1) {        return true;      }      return false;    }    function savePassword($password, $customer_id = null) {      global $osC_Database, $osC_Customer;      if (is_numeric($customer_id) === false) {        $customer_id = $osC_Customer->getID();      }      $Qcustomer = $osC_Database->query('update :table_customers set customers_password = :customers_password, date_account_last_modified = :date_account_last_modified where customers_id = :customers_id');      $Qcustomer->bindTable(':table_customers', TABLE_CUSTOMERS);      $Qcustomer->bindValue(':customers_password', osc_encrypt_string($password));      $Qcustomer->bindRaw(':date_account_last_modified', 'now()');      $Qcustomer->bindInt(':customers_id', $customer_id);      $Qcustomer->execute();      if ($Qcustomer->affectedRows() === 1) {        return true;      }      return false;    }    function checkEntry($email_address) {      global $osC_Database;      $Qcheck = $osC_Database->query('select customers_id from :table_customers where customers_email_address = :customers_email_address limit 1');      $Qcheck->bindTable(':table_customers', TABLE_CUSTOMERS);      $Qcheck->bindValue(':customers_email_address', $email_address);      $Qcheck->execute();      if ($Qcheck->numberOfRows() === 1) {        return true;      }      return false;    }    function checkPassword($password, $email_address = null) {      global $osC_Database, $osC_Customer;      if ($email_address === null) {        $Qcheck = $osC_Database->query('select customers_password from :table_customers where customers_id = :customers_id');        $Qcheck->bindTable(':table_customers', TABLE_CUSTOMERS);        $Qcheck->bindInt(':customers_id', $osC_Customer->getID());        $Qcheck->execute();      } else {        $Qcheck = $osC_Database->query('select customers_password from :table_customers where customers_email_address = :customers_email_address limit 1');        $Qcheck->bindTable(':table_customers', TABLE_CUSTOMERS);        $Qcheck->bindValue(':customers_email_address', $email_address);        $Qcheck->execute();      }      if ($Qcheck->numberOfRows() === 1) {        if ( (strlen($password) > 0) && (strlen($Qcheck->value('customers_password')) > 0) ) {          $stack = explode(':', $Qcheck->value('customers_password'));          if (sizeof($stack) === 2) {            if (md5($stack[1] . $password) == $stack[0]) {              return true;            }          }        }      }      return false;    }    function checkDuplicateEntry($email_address) {      global $osC_Database, $osC_Customer;      $Qcheck = $osC_Database->query('select customers_id from :table_customers where customers_email_address = :customers_email_address and customers_id != :customers_id limit 1');      $Qcheck->bindTable(':table_customers', TABLE_CUSTOMERS);      $Qcheck->bindValue(':customers_email_address', $email_address);      $Qcheck->bindInt(':customers_id', $osC_Customer->getID());      $Qcheck->execute();      if ($Qcheck->numberOfRows() === 1) {        return true;      }      return false;    }  }?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?