Ignore:
Timestamp:
2012/02/11 05:48:00 (12 years ago)
Author:
Seasoft
Message:

#1613 (ソース整形・ソースコメントの改善)

  • Zend Framework PHP 標準コーディング規約への準拠を高めた
File:
1 edited

Legend:

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

    r21450 r21481  
    303303            $objQuery = new SC_Query_Ex(); 
    304304            $where = "order_id = ?"; 
    305             $arrRet = $objQuery->select("*", "dtb_order", $where, array($order_id)); 
     305            $arrRet = $objQuery->select("*", 'dtb_order', $where, array($order_id)); 
    306306            $this->arrDisp = $arrRet[0]; 
    307307            list($point) = SC_Helper_Customer_Ex::sfGetCustomerPoint($order_id, $arrRet[0]['use_point'], $arrRet[0]['add_point']); 
     
    314314 
    315315            // その他支払い情報を表示 
    316             if($this->arrDisp["memo02"] != "") $this->arrDisp["payment_info"] = unserialize($this->arrDisp["memo02"]); 
    317             $this->arrDisp["payment_type"] = "お支払い"; 
     316            if($this->arrDisp['memo02'] != "") $this->arrDisp['payment_info'] = unserialize($this->arrDisp['memo02']); 
     317            $this->arrDisp['payment_type'] = "お支払い"; 
    318318        } 
    319319    } 
     
    324324        $col = "product_id, product_class_id, product_code, product_name, classcategory_name1, classcategory_name2, price, quantity, point_rate"; 
    325325        $where = "order_id = ?"; 
    326         $objQuery->setOrder("order_detail_id"); 
    327         $arrRet = $objQuery->select($col, "dtb_order_detail", $where, array($order_id)); 
     326        $objQuery->setOrder('order_detail_id'); 
     327        $arrRet = $objQuery->select($col, 'dtb_order_detail', $where, array($order_id)); 
    328328        return $arrRet; 
    329329    } 
Note: See TracChangeset for help on using the changeset viewer.