Ignore:
Timestamp:
2013/05/02 18:11:36 (11 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Basis_Point extends LC_Page_Admin_Ex  
    35 { 
     34class LC_Page_Admin_Basis_Point extends LC_Page_Admin_Ex { 
    3635 
    3736    // }}} 
     
    4342     * @return void 
    4443     */ 
    45     function init() 
    46     { 
     44    function init() { 
    4745        parent::init(); 
    4846        $this->tpl_mainpage = 'basis/point.tpl'; 
     
    5856     * @return void 
    5957     */ 
    60     function process() 
    61     { 
     58    function process() { 
    6259        $this->action(); 
    6360        $this->sendResponse(); 
     
    6966     * @return void 
    7067     */ 
    71     function action() 
    72     { 
     68    function action() { 
    7369 
    7470        $objDb = new SC_Helper_DB_Ex(); 
     
    120116     * @return void 
    121117     */ 
    122     function destroy() 
    123     { 
     118    function destroy() { 
    124119        parent::destroy(); 
    125120    } 
    126121 
    127122    /* パラメーター情報の初期化 */ 
    128     function lfInitParam(&$objFormParam) 
    129     { 
     123    function lfInitParam(&$objFormParam) { 
    130124        $objFormParam->addParam('ポイント付与率', 'point_rate', PERCENTAGE_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK')); 
    131125        $objFormParam->addParam('会員登録時付与ポイント', 'welcome_point', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK')); 
    132126    } 
    133127 
    134     function lfUpdateData($post) 
    135     { 
     128    function lfUpdateData($post) { 
    136129        // 入力データを渡す。 
    137130        $sqlval = $post; 
     
    142135    } 
    143136 
    144     function lfInsertData($post) 
    145     { 
     137    function lfInsertData($post) { 
    146138        // 入力データを渡す。 
    147139        $sqlval = $post; 
Note: See TracChangeset for help on using the changeset viewer.