address_book.php

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

PHP
166
字号
<?php/*  $Id: address_book.php 166 2005-08-05 10:14:21 +0200 (Fr, 05 Aug 2005) 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_AddressBook {    function &getListing() {      global $osC_Database, $osC_Customer;      $Qaddresses = $osC_Database->query('select ab.address_book_id, ab.entry_firstname as firstname, ab.entry_lastname as lastname, ab.entry_company as company, ab.entry_street_address as street_address, ab.entry_suburb as suburb, ab.entry_city as city, ab.entry_postcode as postcode, ab.entry_state as state, ab.entry_zone_id as zone_id, ab.entry_country_id as country_id, z.zone_code as zone_code, c.countries_name as country_title from :table_address_book ab left join :table_zones z on (ab.entry_zone_id = z.zone_id), :table_countries c where ab.customers_id = :customers_id and ab.entry_country_id = c.countries_id order by ab.entry_firstname, ab.entry_lastname');      $Qaddresses->bindTable(':table_address_book', TABLE_ADDRESS_BOOK);      $Qaddresses->bindTable(':table_zones', TABLE_ZONES);      $Qaddresses->bindTable(':table_countries', TABLE_COUNTRIES);      $Qaddresses->bindInt(':customers_id', $osC_Customer->getID());      $Qaddresses->execute();      return $Qaddresses;    }    function &getEntry($id) {      global $osC_Database, $osC_Customer;      $Qentry = $osC_Database->query('select entry_gender, entry_company, entry_firstname, entry_lastname, entry_street_address, entry_suburb, entry_postcode, entry_city, entry_state, entry_zone_id, entry_country_id, entry_telephone, entry_fax from :table_address_book where address_book_id = :address_book_id and customers_id = :customers_id');      $Qentry->bindTable(':table_address_book', TABLE_ADDRESS_BOOK);      $Qentry->bindInt(':address_book_id', $id);      $Qentry->bindInt(':customers_id', $osC_Customer->getID());      $Qentry->execute();      return $Qentry;    }    function checkEntry($id) {      global $osC_Database, $osC_Customer;      $Qentry = $osC_Database->query('select address_book_id from :table_address_book where address_book_id = :address_book_id and customers_id = :customers_id');      $Qentry->bindTable(':table_address_book', TABLE_ADDRESS_BOOK);      $Qentry->bindInt(':address_book_id', $id);      $Qentry->bindInt(':customers_id', $osC_Customer->getID());      $Qentry->execute();      if ($Qentry->numberOfRows() === 1) {        return true;      }      return false;    }    function numberOfEntries() {      global $osC_Database, $osC_Customer;      static $total_entries;      if ( !is_numeric($total_entries) ) {        $Qaddresses = $osC_Database->query('select count(*) as total from :table_address_book where customers_id = :customers_id');        $Qaddresses->bindTable(':table_address_book', TABLE_ADDRESS_BOOK);        $Qaddresses->bindInt(':customers_id', $osC_Customer->getID());        $Qaddresses->execute();        $total_entries = $Qaddresses->valueInt('total');      }      return $total_entries;    }    function saveEntry($data, $id = '') {      global $osC_Database, $osC_Customer;      $updated_record = false;      if (is_numeric($id)) {        $Qab = $osC_Database->query('update :table_address_book set customers_id = :customers_id, entry_gender = :entry_gender, entry_company = :entry_company, entry_firstname = :entry_firstname, entry_lastname = :entry_lastname, entry_street_address = :entry_street_address, entry_suburb = :entry_suburb, entry_postcode = :entry_postcode, entry_city = :entry_city, entry_state = :entry_state, entry_country_id = :entry_country_id, entry_zone_id = :entry_zone_id, entry_telephone = :entry_telephone, entry_fax = :entry_fax where address_book_id = :address_book_id and customers_id = :customers_id');        $Qab->bindInt(':address_book_id', $id);        $Qab->bindInt(':customers_id', $osC_Customer->getID());      } else {        $Qab = $osC_Database->query('insert into :table_address_book (customers_id, entry_gender, entry_company, entry_firstname, entry_lastname, entry_street_address, entry_suburb, entry_postcode, entry_city, entry_state, entry_country_id, entry_zone_id, entry_telephone, entry_fax) values (:customers_id, :entry_gender, :entry_company, :entry_firstname, :entry_lastname, :entry_street_address, :entry_suburb, :entry_postcode, :entry_city, :entry_state, :entry_country_id, :entry_zone_id, :entry_telephone, :entry_fax)');      }      $Qab->bindTable(':table_address_book', TABLE_ADDRESS_BOOK);      $Qab->bindInt(':customers_id', $osC_Customer->getID());      $Qab->bindValue(':entry_gender', ((ACCOUNT_GENDER > -1) && isset($data['gender']) && (($data['gender'] == 'm') || ($data['gender'] == 'f'))) ? $data['gender'] : '');      $Qab->bindValue(':entry_company', (ACCOUNT_COMPANY > -1) ? $data['company'] : '');      $Qab->bindValue(':entry_firstname', $data['firstname']);      $Qab->bindValue(':entry_lastname', $data['lastname']);      $Qab->bindValue(':entry_street_address', $data['street_address']);      $Qab->bindValue(':entry_suburb', (ACCOUNT_SUBURB > -1) ? $data['suburb'] : '');      $Qab->bindValue(':entry_postcode', (ACCOUNT_POST_CODE > -1) ? $data['postcode'] : '');      $Qab->bindValue(':entry_city', $data['city']);      $Qab->bindValue(':entry_state', (ACCOUNT_STATE > -1) ? ((isset($data['zone_id']) && ($data['zone_id'] > 0)) ? '' : $data['state']) : '');      $Qab->bindInt(':entry_country_id', $data['country']);      $Qab->bindInt(':entry_zone_id', (ACCOUNT_STATE > -1) ? ((isset($data['zone_id']) && ($data['zone_id'] > 0)) ? $data['zone_id'] : 0) : '');      $Qab->bindValue(':entry_telephone', (ACCOUNT_TELEPHONE > -1) ? $data['telephone'] : '');      $Qab->bindValue(':entry_fax', (ACCOUNT_FAX > -1) ? $data['fax'] : '');      $Qab->execute();      if ($Qab->affectedRows() === 1) {        $updated_record = true;      }      if (isset($data['primary']) && ($data['primary'] === true)) {        if (is_numeric($id) === false) {          $id = $osC_Database->nextID();        }        if (osC_AddressBook::setPrimaryAddress($id)) {          $osC_Customer->setCountryID($data['country']);          $osC_Customer->setZoneID(($data['zone_id'] > 0) ? (int)$data['zone_id'] : '0');          $osC_Customer->setDefaultAddressID($id);          if ($updated_record === false) {            $updated_record = true;          }        }      }      if ($updated_record === true) {        return true;      }      return false;    }    function setPrimaryAddress($id) {      global $osC_Database, $osC_Customer;      if (is_numeric($id) && ($id > 0)) {        $Qupdate = $osC_Database->query('update :table_customers set customers_default_address_id = :customers_default_address_id where customers_id = :customers_id');        $Qupdate->bindTable(':table_customers', TABLE_CUSTOMERS);        $Qupdate->bindInt(':customers_default_address_id', $id);        $Qupdate->bindInt(':customers_id', $osC_Customer->getID());        $Qupdate->execute();        if ($Qupdate->affectedRows() === 1) {          return true;        }      }      return false;    }    function deleteEntry($id) {      global $osC_Database, $osC_Customer;      $Qdelete = $osC_Database->query('delete from :table_address_book where address_book_id = :address_book_id and customers_id = :customers_id');      $Qdelete->bindTable(':table_address_book', TABLE_ADDRESS_BOOK);      $Qdelete->bindInt(':address_book_id', $id);      $Qdelete->bindInt(':customers_id', $osC_Customer->getID());      $Qdelete->execute();      if ($Qdelete->affectedRows() === 1) {        return true;      }      return false;    }  }?>

⌨️ 快捷键说明

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