source: branches/feature-module-update/html/faq/index.php @ 15078

Revision 15078, 732 bytes checked in by nanasess, 17 years ago (diff)

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

  • UTF-8 に変更
  • slib.php, glib.php のクラス化
  • LC_Page の抽象化(一部)
Line 
1<?php
2/*
3 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
4 *
5 * http://www.lockon.co.jp/
6 */
7require_once("../require.php");
8
9class LC_Page {
10    function LC_Page() {
11        /** 必ず指定する **/
12        $this->tpl_css = URL_DIR.'css/layout/faq/index.css';    // メインCSSパス
13        /** 必ず指定する **/
14        $this->tpl_mainpage = 'faq/index.tpl';          // メインテンプレート
15        $this->tpl_page_category = 'faq';               
16        $this->tpl_title = 'よくある質問';
17    }
18}
19
20$objPage = new LC_Page();
21$objView = new SC_SiteView();
22
23$objView->assignobj($objPage);
24$objView->display(SITE_FRAME);
25//-----------------------------------------------------------------------------------------------------------------------------------
26?>
Note: See TracBrowser for help on using the repository browser.