Ignore:
Timestamp:
2013/05/02 18:11:36 (11 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/SC_CustomerList.php

    r22567 r22796  
    2525 *  [概要] 会員検索用クラス 
    2626 */ 
    27 class SC_CustomerList extends SC_SelectSql_Ex  
    28 { 
     27class SC_CustomerList extends SC_SelectSql_Ex { 
    2928 
    3029    var $arrColumnCSV; 
    3130 
    32     function __construct($array, $mode = '') 
    33     { 
     31    function __construct($array, $mode = '') { 
    3432        parent::__construct($array); 
    3533 
     
    329327 
    330328    // 検索用SQL 
    331     function getList() 
    332     { 
     329    function getList() { 
    333330        $this->select = 'SELECT customer_id,name01,name02,kana01,kana02,sex,email,email_mobile,tel01,tel02,tel03,pref,status,update_date,mailmaga_flg FROM dtb_customer '; 
    334         return $this->getSql(2); 
    335     } 
    336  
    337     function getListMailMagazine($is_mobile = false) 
    338     { 
     331        return $this->getSql(0); 
     332    } 
     333 
     334    function getListMailMagazine($is_mobile = false) { 
    339335 
    340336        $colomn = $this->getMailMagazineColumn($is_mobile); 
     
    348344 
    349345    // 検索総数カウント用SQL 
    350     function getListCount() 
    351     { 
     346    function getListCount() { 
    352347        $this->select = 'SELECT COUNT(customer_id) FROM dtb_customer '; 
    353348        return $this->getSql(1); 
     
    355350 
    356351    // CSVダウンロード用SQL 
    357     function getListCSV($arrColumnCSV) 
    358     { 
     352    function getListCSV($arrColumnCSV) { 
    359353        $this->arrColumnCSV = $arrColumnCSV; 
    360354        $i = 0; 
     
    369363    } 
    370364 
    371     function getWhere() 
    372     { 
     365    function getWhere() { 
    373366        return array($this->where, $this->arrVal); 
    374367    } 
Note: See TracChangeset for help on using the changeset viewer.