Ignore:
Timestamp:
2013/08/26 15:52:37 (11 years ago)
Author:
m_uehara
Message:

#2348 r23116 - r23125 をマージ

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13_0/data/class/pages/entry/LC_Page_Entry.php

    r23055 r23126  
    3737     * @return void 
    3838     */ 
    39     function init() 
     39    public function init() 
    4040    { 
    4141        parent::init(); 
     
    6060     * @return void 
    6161     */ 
    62     function process() 
     62    public function process() 
    6363    { 
    6464        parent::process(); 
     
    7171     * @return void 
    7272     */ 
    73     function action() 
     73    public function action() 
    7474    { 
    7575        //決済処理中ステータスのロールバック 
     
    7878        $objPurchase->checkDbMyPendignOrder(); 
    7979        $objPurchase->checkDbAllPendingOrder(); 
    80          
     80 
    8181        $objFormParam = new SC_FormParam_Ex(); 
    8282 
     
    166166     * @return uniqid 
    167167     */ 
    168     function lfRegistCustomerData($sqlval) 
     168    public function lfRegistCustomerData($sqlval) 
    169169    { 
    170170        SC_Helper_Customer_Ex::sfEditCustomerData($sqlval); 
     
    184184     * @return $arrResults 
    185185     */ 
    186     function lfMakeSqlVal(&$objFormParam) 
     186    public function lfMakeSqlVal(&$objFormParam) 
    187187    { 
    188188        $arrForm                = $objFormParam->getHashArray(); 
     
    221221     * @return void 
    222222     */ 
    223     function lfSendMail($uniqid, $arrForm) 
     223    public function lfSendMail($uniqid, $arrForm) 
    224224    { 
    225225        $CONF           = SC_Helper_DB_Ex::sfGetBasisData(); 
     
    273273     * 
    274274     * @access protected 
    275      * @param array $post $_POST のデータ 
    276      * @param string $referer $_SERVER['HTTP_REFERER'] のデータ 
     275     * @param  array   $post    $_POST のデータ 
     276     * @param  string $referer $_SERVER['HTTP_REFERER'] のデータ 
    277277     * @return boolean kiyaku.php からの妥当な遷移であれば true 
    278278     */ 
    279     function lfCheckReferer(&$post, $referer) 
     279    public function lfCheckReferer(&$post, $referer) 
    280280    { 
    281281        if (SC_Display_Ex::detectDevice() !== DEVICE_TYPE_MOBILE 
     
    291291     * 入力エラーのチェック. 
    292292     * 
    293      * @param array $arrRequest リクエスト値($_GET) 
     293     * @param  array $arrRequest リクエスト値($_GET) 
    294294     * @return array $arrErr エラーメッセージ配列 
    295295     */ 
    296     function lfCheckError($arrRequest) 
     296    public function lfCheckError($arrRequest) 
    297297    { 
    298298        // パラメーター管理クラス 
Note: See TracChangeset for help on using the changeset viewer.