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

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

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

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Maker.php

    r21420 r21441  
    8585 
    8686        // モードによる処理切り替え 
    87         switch($this->getMode()) { 
     87        switch ($this->getMode()) { 
    8888 
    8989        // 編集処理 
     
    9393            // エラーチェック 
    9494            $this->arrErr = $this->lfErrorCheck($this->arrForm); 
    95             if(count($this->arrErr) <= 0) { 
    96                 if($this->arrForm['maker_id'] == "") { 
     95            if (count($this->arrErr) <= 0) { 
     96                if ($this->arrForm['maker_id'] == "") { 
    9797                    // メーカー情報新規登録 
    9898                    $this->lfInsert($this->arrForm); 
     
    237237        $objDb = new SC_Helper_DB_Ex(); 
    238238 
    239         switch($mode) { 
     239        switch ($mode) { 
    240240        case 'up': 
    241241            $objDb->sfRankUp("dtb_maker", "maker_id", $maker_id); 
     
    281281 
    282282        // maker_id の正当性チェック 
    283         if(!empty($arrForm['maker_id'])) { 
     283        if (!empty($arrForm['maker_id'])) { 
    284284            $objDb = new SC_Helper_DB_Ex(); 
    285285            if(!SC_Utils_Ex::sfIsInt($arrForm['maker_id'])  
     
    291291            } 
    292292        } 
    293         if(!isset($objErr->arrErr['name'])) { 
     293        if (!isset($objErr->arrErr['name'])) { 
    294294            $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    295295            $arrMaker = array(); 
Note: See TracChangeset for help on using the changeset viewer.