Ignore:
Timestamp:
2013/02/18 19:09:54 (11 years ago)
Author:
shutta
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

File:
1 edited

Legend:

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

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Basis_Point extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_Basis_Point extends LC_Page_Admin_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648        $this->tpl_mainpage = 'basis/point.tpl'; 
     
    5658     * @return void 
    5759     */ 
    58     function process() { 
     60    function process() 
     61    { 
    5962        $this->action(); 
    6063        $this->sendResponse(); 
     
    6669     * @return void 
    6770     */ 
    68     function action() { 
     71    function action() 
     72    { 
    6973 
    7074        $objDb = new SC_Helper_DB_Ex(); 
     
    116120     * @return void 
    117121     */ 
    118     function destroy() { 
     122    function destroy() 
     123    { 
    119124        parent::destroy(); 
    120125    } 
    121126 
    122127    /* パラメーター情報の初期化 */ 
    123     function lfInitParam(&$objFormParam) { 
     128    function lfInitParam(&$objFormParam) 
     129    { 
    124130        $objFormParam->addParam('ポイント付与率', 'point_rate', PERCENTAGE_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK')); 
    125131        $objFormParam->addParam('会員登録時付与ポイント', 'welcome_point', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK')); 
    126132    } 
    127133 
    128     function lfUpdateData($post) { 
     134    function lfUpdateData($post) 
     135    { 
    129136        // 入力データを渡す。 
    130137        $sqlval = $post; 
     
    135142    } 
    136143 
    137     function lfInsertData($post) { 
     144    function lfInsertData($post) 
     145    { 
    138146        // 入力データを渡す。 
    139147        $sqlval = $post; 
Note: See TracChangeset for help on using the changeset viewer.