source: temp/trunk/html/front/format.php @ 1328

Revision 1328, 707 bytes checked in by naka, 20 years ago (diff)

* empty log message *

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1<?php
2
3require_once("../require.php");
4
5class LC_Page {
6    function LC_Page() {
7        $this->tpl_css = '/css/layout/product/detail.css';          // ¥á¥¤¥óCSS¥Ñ¥¹
8        $this->tpl_mainpage = 'front/detail.tpl';                   // ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È
9        $this->tpl_search_products = 'frontparts/leftnavi.tpl';     // ¾¦Éʸ¡º÷¥Æ¥ó¥×¥ì¡¼¥È
10        $this->tpl_category = 'frontparts/category.tpl';            // ¥«¥Æ¥´¥ê¥Æ¥ó¥×¥ì¡¼¥È
11        $this->tpl_leftnavi = 'frontparts/leftnavi.tpl';            // º¸¥Ê¥Ó       
12    }
13}
14
15$objPage = new LC_Page();
16$objView = new SC_SiteView();
17
18
19$objView->assignobj($objPage);
20$objView->display(SITE_FRAME);
21//-----------------------------------------------------------------------------------------------------------------------------------
22?>
Note: See TracBrowser for help on using the repository browser.