Ignore:
Timestamp:
2013/08/24 23:33:52 (11 years ago)
Author:
kimoto
Message:

#2043 typo修正・ソース整形・ソースコメントの改善 for 2.13.0
PHP4的な書き方の修正

Location:
branches/version-2_13-dev/data/class/pages/entry
Files:
4 edited

Legend:

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

    r23055 r23124  
    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        // パラメーター管理クラス 
  • branches/version-2_13-dev/data/class/pages/entry/LC_Page_Entry_Complete.php

    r22926 r23124  
    3838     * @return void 
    3939     */ 
    40     function init() 
     40    public function init() 
    4141    { 
    4242        parent::init(); 
     
    4949     * @return void 
    5050     */ 
    51     function process() 
     51    public function process() 
    5252    { 
    5353        parent::process(); 
     
    6161     * @return void 
    6262     */ 
    63     function action() 
     63    public function action() 
    6464    { 
    6565        // カートが空かどうかを確認する。 
  • branches/version-2_13-dev/data/class/pages/entry/LC_Page_Entry_EmailMobile.php

    r22926 r23124  
    3838     * @return void 
    3939     */ 
    40     function init() 
     40    public function init() 
    4141    { 
    4242        parent::init(); 
     
    4848     * @return void 
    4949     */ 
    50     function process() 
     50    public function process() 
    5151    { 
    5252        parent::process(); 
     
    6060     * @return void 
    6161     */ 
    62     function action() 
     62    public function action() 
    6363    { 
    6464        $objCustomer    = new SC_Customer_Ex(); 
     
    9191     * @return void 
    9292     */ 
    93     function lfInitParam(&$objFormParam) 
     93    public function lfInitParam(&$objFormParam) 
    9494    { 
    9595        $objFormParam->addParam('メールアドレス', 'email_mobile', null, 'a', 
     
    105105     * @return array エラー情報の配列 
    106106     */ 
    107     function lfCheckError(&$objFormParam) 
     107    public function lfCheckError(&$objFormParam) 
    108108    { 
    109109        $objFormParam->convParam(); 
     
    128128     * @return void 
    129129     */ 
    130     function lfRegistEmailMobile($email_mobile, $customer_id) 
     130    public function lfRegistEmailMobile($email_mobile, $customer_id) 
    131131    { 
    132132        $objQuery = SC_Query_Ex::getSingletonInstance(); 
  • branches/version-2_13-dev/data/class/pages/entry/LC_Page_Entry_Kiyaku.php

    r23055 r23124  
    3838     * @return void 
    3939     */ 
    40     function init() 
     40    public function init() 
    4141    { 
    4242        parent::init(); 
     
    4949     * @return void 
    5050     */ 
    51     function process() 
     51    public function process() 
    5252    { 
    5353        parent::process(); 
     
    6161     * @return void 
    6262     */ 
    63     function action() 
     63    public function action() 
    6464    { 
    6565        //決済処理中ステータスのロールバック 
     
    6868        SC_Helper_Purchase_Ex::checkDbMyPendignOrder(); 
    6969        SC_Helper_Purchase_Ex::checkDbAllPendingOrder(); 
    70          
     70 
    7171        $arrKiyaku = $this->lfGetKiyakuData(); 
    7272        $this->max = count($arrKiyaku); 
     
    8989     * @return string 規約の内容をテキストエリアで表示するように整形したデータ 
    9090     */ 
    91     function lfMakeKiyakuText($arrKiyaku, $max, $offset) 
     91    public function lfMakeKiyakuText($arrKiyaku, $max, $offset) 
    9292    { 
    9393        $this->tpl_kiyaku_text = ''; 
     
    107107     * @return array $arrKiyaku 規約の配列 
    108108     */ 
    109     function lfGetKiyakuData() 
     109    public function lfGetKiyakuData() 
    110110    { 
    111111        $objKiyaku = new SC_Helper_Kiyaku_Ex(); 
     
    123123     * @return int 
    124124     */ 
    125     function lfSetOffset($offset) 
     125    public function lfSetOffset($offset) 
    126126    { 
    127127        return is_numeric($offset) === true ? intval($offset) : 1; 
Note: See TracChangeset for help on using the changeset viewer.