Ignore:
Timestamp:
2011/01/12 12:12:16 (15 years ago)
Author:
fukuda
Message:

#880(mobile/sphoneディレクトリを削除)に対応。まずmobileのみ意図通りの動作になるように一部コミット(mypageディレクトリ) changeは作業中

Location:
branches/version-2_5-dev/data/class
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/helper/SC_Helper_Customer.php

    r19864 r19881  
    9494    } 
    9595     
     96    /** 
     97     *   emailアドレスから、登録済み会員や退会済み会員をチェックする 
     98     *    
     99     *   @param string $email  メールアドレス 
     100     *   @return integer  0:登録可能     1:登録済み   2:再登録制限期間内削除ユーザー 
     101     */ 
     102    function lfCheckRegisterUserFromEmail($email){ 
     103        $return = 0; 
     104         
     105        $objQuery =& SC_Query::getSingletonInstance(); 
     106        $arrRet = $objQuery->select("email, update_date, del_flg" 
     107                                    ,"dtb_customer" 
     108                                    ,"email = ? OR email_mobile = ? ORDER BY del_flg" 
     109                                    ,array($email, $email) 
     110                                    ); 
     111 
     112        if(count($arrRet) > 0) { 
     113            if($arrRet[0]['del_flg'] != '1') { 
     114                // 会員である場合 
     115                if (!isset($objErr->arrErr['email'])) $objErr->arrErr['email'] = ""; 
     116                $return = 1; 
     117            } else { 
     118                // 退会した会員である場合 
     119                $leave_time = SC_Utils_Ex::sfDBDatetoTime($arrRet[0]['update_date']); 
     120                $now_time = time(); 
     121                $pass_time = $now_time - $leave_time; 
     122                // 退会から何時間-経過しているか判定する。 
     123                $limit_time = ENTRY_LIMIT_HOUR * 3600; 
     124                if($pass_time < $limit_time) { 
     125                    if (!isset($objErr->arrErr['email'])) $objErr->arrErr['email'] = ""; 
     126                    $return = 2; 
     127                } 
     128            } 
     129        } 
     130        return $return; 
     131    } 
     132     
     133     
     134     
     135     
    96136} 
  • branches/version-2_5-dev/data/class/pages/entry/LC_Page_Entry.php

    r19853 r19881  
    222222        // 仮会員登録の場合 
    223223        if(CUSTOMER_CONFIRM_MAIL == true) { 
    224             $sqlval["mailmaga_flg"] = $this->lfChangeMailFlg($sqlval["mailmaga_flg"]); 
    225224            $sqlval["status"] = "1";                // 仮会員 
    226225        } else { 
     
    315314         
    316315        // 現会員の判定 → 現会員もしくは仮登録中は、メアド一意が前提になってるので同じメアドで登録不可 
    317         $register_user_flg = $this->lfCheckRegisterUserForEmail($arrRet["email"]); 
     316        $register_user_flg =  SC_Helper_Customer_Ex::lfCheckRegisterUserFromEmail($arrRet["email"]); 
    318317        switch($register_user_flg) { 
    319318            case 1: 
     
    328327        return $objErr->arrErr; 
    329328    } 
    330  
    331     /** 
    332      *   emailアドレスから、登録済み会員や退会済み会員をチェックする 
    333      *    
    334      *   @return integer  0:登録可能     1:登録済み   2:再登録制限期間内削除ユーザー 
    335      */ 
    336     function lfCheckRegisterUserForEmail($email){ 
    337         $return = 0; 
    338          
    339         $objQuery = new SC_Query(); 
    340         $arrRet = $objQuery->select("email, update_date, del_flg" 
    341                                     ,"dtb_customer" 
    342                                     ,"email = ? OR email_mobile = ? ORDER BY del_flg" 
    343                                     ,array($email, $email) 
    344                                     ); 
    345  
    346         if(count($arrRet) > 0) { 
    347             if($arrRet[0]['del_flg'] != '1') { 
    348                 // 会員である場合 
    349                 if (!isset($objErr->arrErr['email'])) $objErr->arrErr['email'] = ""; 
    350                 $return = 1; 
    351             } else { 
    352                 // 退会した会員である場合 
    353                 $leave_time = SC_Utils_Ex::sfDBDatetoTime($arrRet[0]['update_date']); 
    354                 $now_time = time(); 
    355                 $pass_time = $now_time - $leave_time; 
    356                 // 退会から何時間-経過しているか判定する。 
    357                 $limit_time = ENTRY_LIMIT_HOUR * 3600; 
    358                 if($pass_time < $limit_time) { 
    359                     if (!isset($objErr->arrErr['email'])) $objErr->arrErr['email'] = ""; 
    360                     $return = 2; 
    361                 } 
    362             } 
    363         } 
    364         return $return; 
    365     } 
    366      
    367     //確認ページ用パスワード表示用 
    368     function lfPassLen($passlen){ 
    369         $ret = ""; 
    370         for ($i=0;$i<$passlen;true){ 
    371         $ret.="*"; 
    372         $i++; 
    373         } 
    374         return $ret; 
    375     } 
    376329     
    377330    function lfCheckReferer(){ 
     
    386339        } 
    387340    } 
    388      
    389     function lfChangeMailFlg($mailmaga_flg){ 
    390         switch($mailmaga_flg) { 
    391             case 1: 
    392                 $mailmaga_flg = 4; 
    393                 break; 
    394             case 2: 
    395                 $mailmaga_flg = 5; 
    396                 break; 
    397             default: 
    398                 $mailmaga_flg = 6; 
    399                 break; 
    400         } 
    401         return $mailmaga_flg; 
    402     } 
    403341} 
    404342?> 
  • branches/version-2_5-dev/data/class/pages/mypage/LC_Page_Mypage.php

    r19807 r19881  
    6464    function process() { 
    6565        parent::process(); 
    66         $this->action(); 
     66        if (Net_UserAgent_Mobile::isMobile() === true){ 
     67            $this->mobileAction(); 
     68        } else { 
     69            $this->action(); 
     70        } 
    6771        $this->sendResponse(); 
    6872    } 
     
    7579    function action() { 
    7680 
    77         //$objView = new SC_SiteView(); 
    7881        $objQuery = new SC_Query(); 
    7982        $objCustomer = new SC_Customer(); 
     
    122125        $objDb = new SC_Helper_DB_Ex(); 
    123126        $this->arrPayment = $objDb->sfGetIDValueList("dtb_payment", "payment_id", "payment_method"); 
    124         //$objView->assignobj($this);               //$objpage内の全てのテンプレート変数をsmartyに格納 
    125         //$objView->display(SITE_FRAME);                //パスとテンプレート変数の呼び出し、実行 
    126     } 
    127  
    128     /** 
    129      * モバイルページを初期化する. 
    130      * 
    131      * @return void 
    132      */ 
    133     function mobileInit() { 
    134         $this->init(); 
    135         $this->tpl_mainpage = 'mypage/index.tpl'; 
    136         $this->tpl_title = 'MYページ/購入履歴一覧'; 
    137         $this->httpCacheControl('nocache'); 
    138     } 
    139  
    140     /** 
    141      * Page のプロセス(モバイル). 
    142      * 
    143      * @return void 
    144      */ 
    145     function mobileProcess() { 
    146         parent::mobileProcess(); 
    147         $this->mobileAction(); 
    148         $this->sendResponse(); 
     127 
    149128    } 
    150129     
     
    155134     */ 
    156135    function mobileAction() { 
    157         //$objView = new SC_MobileView(); 
    158136        $objQuery = new SC_Query(); 
    159137        $objCustomer = new SC_Customer(); 
  • branches/version-2_5-dev/data/class/pages/mypage/LC_Page_Mypage_ChangeComplete.php

    r19807 r19881  
    6767     */ 
    6868    function action() { 
    69         //$objView = new SC_SiteView(); 
    70         $objCustomer = new SC_Customer(); 
    71  
    72         //ログイン判定 
    73         if (!$objCustomer->isLoginSuccess()){ 
    74             SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR); 
    75         } else { 
    76             //マイページトップ顧客情報表示用 
    77             $this->tpl_login = true; 
    78             $this->CustomerName1 = $objCustomer->getvalue('name01'); 
    79             $this->CustomerName2 = $objCustomer->getvalue('name02'); 
    80             $this->CustomerPoint = $objCustomer->getvalue('point'); 
    81         } 
    82  
    83         //$objView->assignobj($this); 
    84         //$objView->display(SITE_FRAME); 
    85     } 
    86  
    87     /** 
    88      * モバイルページを初期化する. 
    89      * 
    90      * @return void 
    91      */ 
    92     function mobileInit() { 
    93         $this->init(); 
    94         $this->tpl_mainpage = 'mypage/change_complete.tpl'; 
    95         $this->tpl_title = 'MYページ/会員登録内容変更(完了ページ)'; 
    96     } 
    97  
    98     /** 
    99      * Page のプロセス(モバイル). 
    100      * 
    101      * @return void 
    102      */ 
    103     function mobileProcess() { 
    104         parent::mobileProcess(); 
    105         $this->mobileAction(); 
    106         $this->sendResponse(); 
    107     } 
    108  
    109     /** 
    110      * Page のAction(モバイル). 
    111      * 
    112      * @return void 
    113      */ 
    114     function mobileAction() { 
    115  
    116         //$objView = new SC_MobileView(); 
    11769        $objCustomer = new SC_Customer(); 
    11870 
     
    12981            $this->CustomerPoint = $objCustomer->getvalue('point'); 
    13082        } 
    131  
    132         //$objView->assignobj($this); 
    133         //$objView->display(SITE_FRAME); 
    13483    } 
    13584 
  • branches/version-2_5-dev/data/class/pages/mypage/LC_Page_Mypage_History.php

    r19807 r19881  
    4444    function init() { 
    4545        parent::init(); 
    46         $this->tpl_title = 'MYページ'; 
    47         $this->tpl_subtitle = '購入履歴詳細'; 
    4846        $this->tpl_navi = TEMPLATE_REALDIR . 'mypage/navi.tpl'; 
    4947        $this->tpl_mainno = 'mypage'; 
     
    5351        $this->arrMAILTEMPLATE = $masterData->getMasterData("mtb_mail_template"); 
    5452        $this->arrPref = $masterData->getMasterData('mtb_pref'); 
     53         
     54        $this->isMobile = Net_UserAgent_Mobile::isMobile(); 
    5555   } 
    5656 
     
    6262    function process() { 
    6363        parent::process(); 
    64         $this->action(); 
     64        if ( $this->isMobile === false ){ 
     65            $this->action(); 
     66        } else { 
     67            $this->mobileAction(); 
     68        } 
    6569        $this->sendResponse(); 
    6670    } 
     
    7276     */ 
    7377    function action() { 
    74         //$objView = new SC_SiteView(); 
    7578        $objQuery = new SC_Query(); 
    7679        $objCustomer = new SC_Customer(); 
     
    115118        $this->tpl_arrMailHistory = $this->lfGetMailHistory($orderId); 
    116119 
    117         //$objView->assignobj($this); 
    118         //$objView->display(SITE_FRAME); 
    119120    } 
    120121 
     
    129130 
    130131    /** 
    131      * モバイルページを初期化する. 
    132      * 
    133      * @return void 
    134      */ 
    135     function mobileInit() { 
    136         $this->init(); 
    137         $this->tpl_mainpage = MOBILE_TEMPLATE_REALDIR . 'mypage/history.tpl'; 
    138         $this->tpl_title = 'MYページ/購入履歴一覧'; 
    139         $this->httpCacheControl('nocache'); 
    140     } 
    141  
    142     /** 
    143      * Page のプロセス(モバイル). 
    144      * 
    145      * @return void 
    146      */ 
    147     function mobileProcess() { 
    148         parent::mobileProcess(); 
    149         $this->mobileAction(); 
    150         $this->sendResponse(); 
    151     } 
    152  
    153     /** 
    154132     * Page のAction(モバイル). 
    155133     * 
     
    159137        define ("HISTORY_NUM", 5); 
    160138 
    161         //$objView = new SC_MobileView(); 
    162139        $objQuery = new SC_Query(); 
    163140        $objCustomer = new SC_Customer(); 
     
    210187 
    211188        $this->tpl_strnavi = $previous . $bar . $next; 
    212         //$objView->assignobj($this);               //$objpage内の全てのテンプレート変数をsmartyに格納 
    213         //$objView->display(SITE_FRAME);                //パスとテンプレート変数の呼び出し、実行 
     189 
    214190    } 
    215191 
  • branches/version-2_5-dev/data/class/pages/mypage/LC_Page_Mypage_HistoryDetail.php

    r19805 r19881  
    4444    function init() { 
    4545        parent::init(); 
     46        $this->tpl_mainpage = 'mypage/history_detail.tpl'; 
     47        $this->tpl_title = 'MYページ'; 
     48        $this->tpl_subtitle = '購入履歴詳細'; 
    4649    } 
    4750 
     
    6265     * @return void 
    6366     */ 
    64     function action() {} 
    65  
    66     /** 
    67      * モバイルページを初期化する. 
    68      * 
    69      * @return void 
    70      */ 
    71     function mobileInit() { 
    72         $this->init(); 
    73         $this->tpl_mainpage = 'mypage/history_detail.tpl'; 
    74         $this->tpl_title = 'MYページ'; 
    75         $this->tpl_subtitle = '購入履歴詳細'; 
    76     } 
    77  
    78     /** 
    79      * Page のプロセス(モバイル). 
    80      * 
    81      * @return void 
    82      */ 
    83     function mobileProcess() { 
    84         parent::mobileProcess(); 
    85         $this->mobileAction(); 
    86         $this->sendResponse(); 
    87     } 
    88  
    89     /** 
    90      * Page のAction(モバイル). 
    91      * 
    92      * @return void 
    93      */ 
    94     function mobileAction() { 
    95  
    96         //$objView = new SC_MobileView(); 
     67    function action() { 
    9768        $objQuery = new SC_Query(); 
    9869        $objCustomer = new SC_Customer(); 
     
    12495            $this->CustomerPoint = $objCustomer->getvalue('point'); 
    12596        } 
    126  
    127         //$objView->assignobj($this); 
    128         //$objView->display(SITE_FRAME); 
    12997    } 
    13098 
  • branches/version-2_5-dev/data/class/pages/mypage/LC_Page_Mypage_Order.php

    r19833 r19881  
    8787 
    8888    /** 
    89      * モバイルページを初期化する. 
    90      * 
    91      * @return void 
    92      */ 
    93     function mobileInit() { 
    94         $this->init(); 
    95     } 
    96  
    97     /** 
    98      * Page のプロセス(モバイル). 
    99      * 
    100      * @return void 
    101      */ 
    102     function mobileProcess() { 
    103         parent::mobileProcess(); 
    104         $this->mobileAction(); 
    105         $this->sendResponse(); 
    106     } 
    107  
    108     /** 
    109      * Page のAction(モバイル). 
    110      * 
    111      * @return void 
    112      */ 
    113     function mobileAction() { 
    114  
    115         $objCustomer = new SC_Customer(); 
    116         $objCartSess = new SC_CartSession(); 
    117  
    118         //受注詳細データの取得 
    119         $arrDisp = $this->lfGetOrderDetail($_POST['order_id']); 
    120  
    121         //ログインしていない、またはDBに情報が無い場合 
    122         if (!$objCustomer->isLoginSuccess(true) or count($arrDisp) == 0){ 
    123             SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR); 
    124         } 
    125  
    126         for($num = 0; $num < count($arrDisp); $num++) { 
    127             $product_id = $arrDisp[$num]['product_id']; 
    128             $product_class_id = $arrDisp[$num]['product_class_id']; 
    129             $cate_id1 = $arrDisp[$num]['classcategory_id1']; 
    130             $cate_id2 = $arrDisp[$num]['classcategory_id2']; 
    131             $quantity = $arrDisp[$num]['quantity']; 
    132  
    133             $objCartSess->addProduct(array($product_id, $product_class_id, $cate_id1, $cate_id2), $quantity); 
    134         } 
    135         $this->objDisplay->redirect($this->getLocation(MOBILE_CART_URL_PATH)); 
    136     } 
    137  
    138     /** 
    13989     * デストラクタ. 
    14090     * 
  • branches/version-2_5-dev/data/class/pages/mypage/LC_Page_Mypage_Refusal.php

    r19880 r19881  
    4545        parent::init(); 
    4646        $this->tpl_title = 'MYページ'; 
    47         $this->tpl_subtitle = '退会手続き(入力ページ)'; 
     47        if ( Net_UserAgent_Mobile::isMobile() === true){ 
     48            $this->tpl_title .= '/退会手続き(入力ページ)'; 
     49        } else { 
     50            $this->tpl_subtitle = '退会手続き(入力ページ)'; 
     51        } 
    4852        $this->tpl_navi = TEMPLATE_REALDIR . 'mypage/navi.tpl'; 
    4953        $this->tpl_mainno = 'mypage'; 
     
    5862    function process() { 
    5963        parent::process(); 
    60         $this->action(); 
     64        if ( Net_UserAgent_Mobile::isMobile() === true){ 
     65            $this->mobileAction(); 
     66        } else { 
     67            $this->action();             
     68        } 
    6169        $this->sendResponse(); 
    6270    } 
     
    6876     */ 
    6977    function action() { 
    70         //$objView = new SC_SiteView(); 
    71         $objCustomer = new SC_Customer(); 
    72         $objQuery = new SC_Query(); 
    7378        $objSiteSess = new SC_SiteSession(); 
    7479         
     
    7681        $this->tpl_login = $objCustomer->isLoginSuccess(); 
    7782 
    78         //ログイン判定 
    79         if (!$objCustomer->isLoginSuccess()){ 
    80             SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR); 
    81         }else { 
    82             //マイページトップ顧客情報表示用 
    83             $this->CustomerName1 = $objCustomer->getvalue('name01'); 
    84             $this->CustomerName2 = $objCustomer->getvalue('name02'); 
    85             $this->CustomerPoint = $objCustomer->getvalue('point'); 
    86         } 
     83        $this->lfCheckLogin(); 
    8784 
    8885        if (!isset($_POST['mode'])) $_POST['mode'] = ""; 
     
    104101            // 正しい遷移かどうかをチェック 
    105102            $this->lfIsValidMovement($objSiteSess); 
    106  
    107             //会員削除 
    108             $objQuery->exec("UPDATE dtb_customer SET del_flg=1, update_date=now() WHERE customer_id=?", array($objCustomer->getValue('customer_id'))); 
    109  
    110             $objCustomer->EndSession(); 
    111             //完了ページへ 
    112             SC_Response_Ex::sendRedirect('refusal_complete.php'); 
    113             exit; 
     103            $this->lfDeleteCustomer();    //会員削除 
    114104        } 
    115105 
    116         //$objView->assignobj($this); 
    117         //$objView->display(SITE_FRAME); 
    118     } 
    119  
    120     /** 
    121      * モバイルページを初期化する. 
    122      * 
    123      * @return void 
    124      */ 
    125     function mobileInit() { 
    126         $this->init(); 
    127         $this->tpl_mainpage = 'mypage/refusal.tpl'; 
    128         $this->tpl_title = "MYページ/退会手続き(入力ページ)"; 
    129  
    130     } 
    131  
    132     /** 
    133      * Page のプロセス(モバイル). 
    134      * 
    135      * @return void 
    136      */ 
    137     function mobileProcess() { 
    138         parent::mobileProcess(); 
    139         $this->mobileAction(); 
    140         $this->sendResponse(); 
    141106    } 
    142107 
     
    148113    function mobileAction() { 
    149114 
    150         //$objView = new SC_MobileView(); 
    151         $objCustomer = new SC_Customer(); 
    152115        $objQuery = new SC_Query(); 
    153116 
    154         //ログイン判定 
    155         if (!$objCustomer->isLoginSuccess(true)){ 
    156             SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR); 
    157         }else { 
    158             //マイページトップ顧客情報表示用 
    159             $this->CustomerName1 = $objCustomer->getvalue('name01'); 
    160             $this->CustomerName2 = $objCustomer->getvalue('name02'); 
    161             $this->CustomerPoint = $objCustomer->getvalue('point'); 
    162         } 
     117        $this->lfCheckLogin(); 
    163118 
    164119        if (isset($_POST['no'])) { 
     
    166121            exit; 
    167122        } elseif (isset($_POST['complete'])){ 
    168             //会員削除 
    169             $objQuery->exec("UPDATE dtb_customer SET del_flg=1, update_date=now() WHERE customer_id=?", array($objCustomer->getValue('customer_id'))); 
    170  
    171             $where = "email = ?"; 
    172             $objCustomer->EndSession(); 
    173             //完了ページへ 
    174             SC_Response_Ex::sendRedirect('refusal_complete.php'); 
    175             exit; 
     123            $this->lfDeleteCustomer();    //会員削除 
    176124        } 
    177125 
    178         //$objView->assignobj($this); 
    179         //$objView->display(SITE_FRAME); 
    180126    } 
    181127 
     
    202148        } 
    203149    } 
     150     
     151    function lfCheckLogin(){ 
     152        $objCustomer = new SC_Customer(); 
     153        //ログイン判定 
     154        if (!$objCustomer->isLoginSuccess()){       
     155            SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR); 
     156        }else { 
     157            //マイページトップ顧客情報表示用 
     158            $this->CustomerName1 = $objCustomer->getvalue('name01'); 
     159            $this->CustomerName2 = $objCustomer->getvalue('name02'); 
     160            $this->CustomerPoint = $objCustomer->getvalue('point'); 
     161        } 
     162    } 
     163     
     164    function lfDeleteCustomer(){ 
     165        $objQuery = new SC_Query(); 
     166        $objCustomer = new SC_Customer(); 
     167        //会員削除 
     168        $objQuery->exec("UPDATE dtb_customer SET del_flg=1, update_date=now() WHERE customer_id=?", array($objCustomer->getValue('customer_id'))); 
     169 
     170        $objCustomer->EndSession(); 
     171        //完了ページへ 
     172        SC_Response_Ex::sendRedirect('refusal_complete.php'); 
     173        exit; 
     174    } 
     175     
    204176} 
    205177?> 
  • branches/version-2_5-dev/data/class/pages/mypage/LC_Page_Mypage_RefusalComplete.php

    r19807 r19881  
    4545        parent::init(); 
    4646        $this->tpl_title = 'MYページ'; 
    47         $this->tpl_subtitle = '退会手続き(完了ページ)'; 
     47        if ( Net_UserAgent_Mobile::isMobile() === true){ 
     48            $this->tpl_title .= '/退会手続き(完了ページ)'; 
     49        } else { 
     50            $this->tpl_subtitle = '退会手続き(完了ページ)'; 
     51        } 
    4852        $this->tpl_navi = TEMPLATE_REALDIR . 'mypage/navi.tpl'; 
    4953        $this->tpl_mypageno = 'refusal'; 
     
    6872     */ 
    6973    function action() { 
    70         //$objView = new SC_SiteView(); 
    71  
    7274        $objCustomer = new SC_Customer(); 
    7375        //マイページトップ顧客情報表示用 
     
    7577        $this->CustomerName2 = $objCustomer->getvalue('name02'); 
    7678        $this->CustomerPoint = $objCustomer->getvalue('point'); 
    77  
    78         //$objView->assignobj($this); 
    79         //$objView->display(SITE_FRAME); 
    80     } 
    81  
    82     /** 
    83      * モバイルページを初期化する. 
    84      * 
    85      * @return void 
    86      */ 
    87     function mobileInit() { 
    88         $this->tpl_mainpage = 'mypage/refusal_complete.tpl'; 
    89         $this->tpl_title = "MYページ/退会手続き(完了ページ)"; 
    90         $this->point_disp = false; 
    91     } 
    92  
    93     /** 
    94      * Page のプロセス(モバイル). 
    95      * 
    96      * @return void 
    97      */ 
    98     function mobileProcess() { 
    99          parent::mobileProcess(); 
    100         $this->mobileAction(); 
    101         $this->sendResponse(); 
    102     } 
    103  
    104     /** 
    105      * Page のAction(モバイル). 
    106      * 
    107      * @return void 
    108      */ 
    109     function mobileAction() { 
    110         //$objView = new SC_MobileView(); 
    111  
    112         $objCustomer = new SC_Customer(); 
    113         //マイページトップ顧客情報表示用 
    114         $this->CustomerName1 = $objCustomer->getvalue('name01'); 
    115         $this->CustomerName2 = $objCustomer->getvalue('name02'); 
    116         $this->CustomerPoint = $objCustomer->getvalue('point'); 
    117  
    118         //$objView->assignobj($this); 
    119         //$objView->display(SITE_FRAME); 
    12079    } 
    12180 
Note: See TracChangeset for help on using the changeset viewer.