source: branches/dev/html/mobile/products/search.php @ 11460

Revision 11460, 597 bytes checked in by inoue, 17 years ago (diff)

モバイル版EC-CUBE

  • Property svn:eol-style set to native
Line 
1<?php
2/**
3 * ¥â¥Ð¥¤¥ë¥µ¥¤¥È/¾¦Éʸ¡º÷¥Õ¥©¡¼¥à
4 */
5
6require_once('../require.php');
7
8class LC_Page {
9    function LC_Page() {
10        /** ɬ¤º»ØÄꤹ¤ë **/
11        $this->tpl_mainpage = 'products/search.tpl';            // ¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È
12        $this->tpl_title = '¾¦Éʸ¡º÷';
13    }
14}
15
16$objPage = new LC_Page();
17$objView = new SC_SiteView();
18
19// ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ
20$objPage = sfGetPageLayout($objPage, false, DEF_LAYOUT);
21
22$objView->assignobj($objPage);
23$objView->display(SITE_FRAME);
24
25//-----------------------------------------------------------------------------------------------------------------------------------
26?>
Note: See TracBrowser for help on using the repository browser.