Ignore:
Timestamp:
2013/02/18 19:09:54 (11 years ago)
Author:
shutta
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

File:
1 edited

Legend:

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

    r22273 r22567  
    2525 *  [概要] 会員検索用クラス 
    2626 */ 
    27 class SC_CustomerList extends SC_SelectSql_Ex { 
     27class SC_CustomerList extends SC_SelectSql_Ex  
     28{ 
    2829 
    2930    var $arrColumnCSV; 
    3031 
    31     function __construct($array, $mode = '') { 
     32    function __construct($array, $mode = '') 
     33    { 
    3234        parent::__construct($array); 
    3335 
     
    327329 
    328330    // 検索用SQL 
    329     function getList() { 
     331    function getList() 
     332    { 
    330333        $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 '; 
    331334        return $this->getSql(2); 
    332335    } 
    333336 
    334     function getListMailMagazine($is_mobile = false) { 
     337    function getListMailMagazine($is_mobile = false) 
     338    { 
    335339 
    336340        $colomn = $this->getMailMagazineColumn($is_mobile); 
     
    344348 
    345349    // 検索総数カウント用SQL 
    346     function getListCount() { 
     350    function getListCount() 
     351    { 
    347352        $this->select = 'SELECT COUNT(customer_id) FROM dtb_customer '; 
    348353        return $this->getSql(1); 
     
    350355 
    351356    // CSVダウンロード用SQL 
    352     function getListCSV($arrColumnCSV) { 
     357    function getListCSV($arrColumnCSV) 
     358    { 
    353359        $this->arrColumnCSV = $arrColumnCSV; 
    354360        $i = 0; 
     
    363369    } 
    364370 
    365     function getWhere() { 
     371    function getWhere() 
     372    { 
    366373        return array($this->where, $this->arrVal); 
    367374    } 
Note: See TracChangeset for help on using the changeset viewer.