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/helper/SC_Helper_Address.php

    r22546 r22567  
    3737     * @return array() 
    3838     */ 
    39     function registAddress($sqlval) { 
     39    function registAddress($sqlval) 
     40    { 
    4041        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    4142        $customer_id = $sqlval['customer_id']; 
     
    7778     * @return array() 
    7879     */ 
    79     function getAddress($other_deliv_id) { 
     80    function getAddress($other_deliv_id) 
     81    { 
    8082        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    8183        $address = $objQuery->select('*', 'dtb_other_deliv', 'other_deliv_id = ?', array($other_deliv_id)); 
     
    9092     * @return array 
    9193     */ 
    92     function getList($customer_id, $startno = '') { 
     94    function getList($customer_id, $startno = '') 
     95    { 
    9396        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    9497        $objQuery->setOrder('other_deliv_id DESC'); 
     
    106109     * @return void 
    107110     */ 
    108     function deleteAddress($other_deliv_id) { 
     111    function deleteAddress($other_deliv_id) 
     112    { 
    109113        $where      = 'other_deliv_id = ?'; 
    110114        $objQuery   =& SC_Query_Ex::getSingletonInstance(); 
     
    118122     * @return void 
    119123     */ 
    120     function setFormParam(&$objFormParam) { 
     124    function setFormParam(&$objFormParam) 
     125    { 
    121126        SC_Helper_Customer_Ex::sfCustomerCommonParam($objFormParam); 
    122127        $objFormParam->addParam('', 'other_deliv_id'); 
     
    129134     * @return void 
    130135     */ 
    131     function errorCheck(&$objFormParam) { 
     136    function errorCheck(&$objFormParam) 
     137    { 
    132138        $objErr = SC_Helper_Customer_Ex::sfCustomerCommonErrorCheck($objFormParam); 
    133139        return $objErr->arrErr; 
Note: See TracChangeset for help on using the changeset viewer.