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

    r12157 r15078  
    55 * http://www.lockon.co.jp/ 
    66 */ 
     7 
     8// {{{ requires 
    79require_once("../require.php"); 
     10require_once(CLASS_PATH . "page_extends/abouts/LC_Page_Abouts_Ex.php"); 
    811 
    9 class LC_Page { 
    10     function LC_Page() { 
    11         /** ɬ¤º»ØÄꤹ¤ë **/ 
    12         $this->tpl_mainpage = 'abouts/index.tpl';           // ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È 
    13         $this->tpl_page_category = 'abouts';     
    14         $this->tpl_title = 'Åö¥µ¥¤¥È¤Ë¤Ä¤¤¤Æ'; 
    15     } 
    16 } 
     12// }}} 
     13// {{{ generate page 
    1714 
    18 $objPage = new LC_Page(); 
    19 $objView = new SC_SiteView(); 
    20  
    21 // ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ 
    22 $objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT); 
    23  
    24 $objView->assignobj($objPage); 
    25 $objView->display(SITE_FRAME); 
    26  
    27 //----------------------------------------------------------------------------------------------------------------------------------- 
     15$objPage = new LC_Page_Abouts_Ex(); 
     16$objPage->init(); 
     17$objPage->process(); 
     18register_shutdown_function(array($objPage, "destroy")); 
    2819?> 
Note: See TracChangeset for help on using the changeset viewer.