Ignore:
Timestamp:
2012/06/02 23:43:27 (14 years ago)
Author:
Yammy
Message:

LC_Page_*系のエラーチェック関数の名称統一かも

refs #1842

Location:
branches/version-2_12-dev/data/class/pages/admin
Files:
2 edited

Legend:

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

    r21867 r21883  
    9595            $objFormParam->convParam(); 
    9696 
    97             $this->arrErr = $this->lfErrorCheck($objFormParam); 
     97            $this->arrErr = $this->lfCheckError($objFormParam); 
    9898            $post = $objFormParam->getHashArray(); 
    9999 
     
    263263 
    264264    // 入力エラーチェック 
    265     function lfErrorCheck(&$objFormParam) { 
     265    function lfCheckError(&$objFormParam) { 
    266266        $arrErr = $objFormParam->checkError(); 
    267267        $post = $objFormParam->getHashArray(); 
  • branches/version-2_12-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Maker.php

    r21867 r21883  
    9393 
    9494                // エラーチェック 
    95                 $this->arrErr = $this->lfErrorCheck($this->arrForm, $objFormParam); 
     95                $this->arrErr = $this->lfCheckError($this->arrForm, $objFormParam); 
    9696                if (count($this->arrErr) <= 0) { 
    9797                    if ($this->arrForm['maker_id'] == '') { 
     
    280280     * @return array $objErr->arrErr エラー内容 
    281281     */ 
    282     function lfErrorCheck(&$arrForm, &$objFormParam) { 
     282    function lfCheckError(&$arrForm, &$objFormParam) { 
    283283 
    284284        $arrErr = $objFormParam->checkError(); 
Note: See TracChangeset for help on using the changeset viewer.