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/products/LC_Page_Products_Review.php

    r22567 r22796  
    3232 * @version $Id:LC_Page_Products_Review.php 15532 2007-08-31 14:39:46Z nanasess $ 
    3333 */ 
    34 class LC_Page_Products_Review extends LC_Page_Ex  
    35 { 
     34class LC_Page_Products_Review extends LC_Page_Ex { 
    3635 
    3736    // {{{ properties 
     
    5453     * @return void 
    5554     */ 
    56     function init() 
    57     { 
     55    function init() { 
    5856        parent::init(); 
    5957 
     
    6967     * Page のプロセス. 
    7068     */ 
    71     function process() 
    72     { 
     69    function process() { 
    7370        parent::process(); 
    7471        $this->action(); 
     
    8178     * @return void 
    8279     */ 
    83     function action() 
    84     { 
     80    function action() { 
    8581 
    8682        $objFormParam = new SC_FormParam_Ex(); 
     
    141137     * @return void 
    142138     */ 
    143     function destroy() 
    144     { 
     139    function destroy() { 
    145140        parent::destroy(); 
    146141    } 
     
    152147     * @return void 
    153148     */ 
    154     function lfInitParam(&$objFormParam) 
    155     { 
     149    function lfInitParam(&$objFormParam) { 
    156150        $objFormParam->addParam('レビューID', 'review_id', INT_LEN, 'aKV'); 
    157151        $objFormParam->addParam('商品ID', 'product_id', INT_LEN, 'n', array('NUM_CHECK','EXIST_CHECK', 'MAX_LENGTH_CHECK')); 
     
    170164     * @return array エラーメッセージの配列 
    171165     */ 
    172     function lfCheckError(&$objFormParam) 
    173     { 
     166    function lfCheckError(&$objFormParam) { 
    174167        $arrErr = $objFormParam->checkError(); 
    175168 
     
    199192     * @return string $product_name 商品名 
    200193     */ 
    201     function lfGetProductName($product_id) 
    202     { 
     194    function lfGetProductName($product_id) { 
    203195        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    204196 
     
    207199 
    208200    //登録実行 
    209     function lfRegistRecommendData(&$objFormParam) 
    210     { 
     201    function lfRegistRecommendData(&$objFormParam) { 
    211202        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    212203        $arrRegist = $objFormParam->getDbArray(); 
Note: See TracChangeset for help on using the changeset viewer.