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/index.php

    r12157 r15078  
    55 * http://www.lockon.co.jp/ 
    66 */ 
     7// {{{ requires 
     8require_once("./require.php"); 
     9require_once(CLASS_PATH . "page_extends/LC_Page_Index_Ex.php"); 
    710 
    8 require_once("./require.php"); 
     11// }}} 
     12// {{{ generate page 
    913 
    10 class LC_Page { 
    11     function LC_Page() { 
    12         /** ɬ¤ºÊѹ¹¤¹¤ë **/ 
    13         $this->tpl_css = URL_DIR.'css/layout/index.css';                        // ¥á¥¤¥óCSS¥Ñ¥¹ 
    14         /** ɬ¤ºÊѹ¹¤¹¤ë **/ 
    15         $this->tpl_mainpage = HTML_PATH . "user_data/templates/top.tpl";        // ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È 
    16     } 
    17 } 
    18  
    19 $objPage = new LC_Page(); 
    20 $conn = new SC_DBConn(); 
    21  
    22 // ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ 
    23 $objPage = sfGetPageLayout($objPage, false, "index.php"); 
    24  
    25 $objView = new SC_SiteView(); 
    26 $objView->assignobj($objPage); 
    27 $objView->display(SITE_FRAME); 
    28 //----------------------------------------------------------------------------------------------------------------------------------- 
     14$objPage = new LC_Page_Index_Ex(); 
     15$objPage->init(); 
     16$objPage->process(); 
     17register_shutdown_function(array($objPage, "destroy")); 
    2918?> 
Note: See TracChangeset for help on using the changeset viewer.