Changeset 21883


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

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

refs #1842

Location:
branches/version-2_12-dev/data/class/pages
Files:
5 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(); 
  • branches/version-2_12-dev/data/class/pages/entry/LC_Page_Entry.php

    r21867 r21883  
    9696                if (isset($_POST['submit_address'])) { 
    9797                    // 入力エラーチェック 
    98                     $this->arrErr = $this->fnErrorCheck($_POST); 
     98                    $this->arrErr = $this->lfCheckError($_POST); 
    9999                    // 入力エラーの場合は終了 
    100100                    if (count($this->arrErr) == 0) { 
     
    303303     * @return array $arrErr エラーメッセージ配列 
    304304     */ 
    305     function fnErrorCheck($arrRequest) { 
     305    function lfCheckError($arrRequest) { 
    306306        // パラメーター管理クラス 
    307307        $objFormParam = new SC_FormParam_Ex(); 
  • branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Change.php

    r21867 r21883  
    9595                if (isset($_POST['submit_address'])) { 
    9696                    // 入力エラーチェック 
    97                     $this->arrErr = $this->fnErrorCheck($_POST); 
     97                    $this->arrErr = $this->lfCheckError($_POST); 
    9898                    // 入力エラーの場合は終了 
    9999                    if (count($this->arrErr) == 0) { 
     
    192192     * @return array $arrErr エラーメッセージ配列 
    193193     */ 
    194     function fnErrorCheck($arrRequest) { 
     194    function lfCheckError($arrRequest) { 
    195195        // パラメーター管理クラス 
    196196        $objFormParam = new SC_FormParam_Ex(); 
  • branches/version-2_12-dev/data/class/pages/regist/LC_Page_Regist.php

    r21867 r21883  
    7070            //-- 本登録完了のためにメールから接続した場合 
    7171                //-- 入力チェック 
    72                 $this->arrErr       = $this->lfErrorCheck($_GET); 
     72                $this->arrErr       = $this->lfCheckError($_GET); 
    7373                if ($this->arrErr) SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', true, $this->arrErr['id']); 
    7474 
     
    123123     * @return array エラーの配列 
    124124     */ 
    125     function lfErrorCheck($array) { 
     125    function lfCheckError($array) { 
    126126        $objErr     = new SC_CheckError_Ex($array); 
    127127 
Note: See TracChangeset for help on using the changeset viewer.