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

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.