Ignore:
Timestamp:
2007/07/20 15:58:59 (17 years ago)
Author:
nanasess
Message:

r15064 から svn cp
とりあえず暫定コミット.

  • UTF-8 に変更
  • slib.php, glib.php のクラス化
  • LC_Page の抽象化(一部)
Location:
branches/feature-module-update
Files:
1 edited
2 copied

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update

    • Property svn:ignore set to
      .cache

      .settings

      .projectOptions
  • branches/feature-module-update/html/frontparts/bloc/login.php

    r12157 r15078  
    88    var $tpl_login_email; 
    99    function LC_LoginPage() { 
    10         /** ɬ¤ºÊѹ¹¤¹¤ë **/ 
    11         $this->tpl_mainpage = BLOC_PATH . 'login.tpl';  // ¥á¥¤¥ó 
     10        /** 必ず変更する **/ 
     11        $this->tpl_mainpage = BLOC_PATH . 'login.tpl';  // メイン 
    1212        $this->tpl_login = false; 
    1313        $this->tpl_disable_logout = false; 
     
    1717$objSubPage = new LC_LoginPage(); 
    1818$objCustomer = new SC_Customer(); 
    19 // ¥¯¥Ã¥­¡¼´ÉÍý¥¯¥é¥¹ 
     19// クッキー管理クラス 
    2020$objCookie = new SC_Cookie(COOKIE_EXPIRE); 
    2121 
    22 // ¥í¥°¥¤¥óȽÄê 
     22// ログイン判定 
    2323if($objCustomer->isLoginSuccess()) { 
    2424    $objSubPage->tpl_login = true; 
     
    2727    $objSubPage->tpl_name2 = $objCustomer->getValue('name02'); 
    2828} else { 
    29     // ¥¯¥Ã¥­¡¼È½Äê 
     29    // クッキー判定 
    3030    $objSubPage->tpl_login_email = $objCookie->getCookie('login_email'); 
    3131    if($objSubPage->tpl_login_email != "") { 
     
    3333    } 
    3434     
    35     // POST¤µ¤ì¤Æ¤­¤¿ID¤¬¤¢¤ë¾ì¹ç¤ÏÍ¥À褹¤ë¡£ 
     35    // POSTされてきたIDがある場合は優先する。 
    3636    if($_POST['login_email'] != "") { 
    3737        $objSubPage->tpl_login_email = $_POST['login_email']; 
Note: See TracChangeset for help on using the changeset viewer.