| 1 | <?php
|
|---|
| 2 | /*
|
|---|
| 3 | * Copyright(c) 2000-2006 LOCKON CO.,LTD. All Rights Reserved.
|
|---|
| 4 | *
|
|---|
| 5 | * http://www.lockon.co.jp/
|
|---|
| 6 | */
|
|---|
| 7 |
|
|---|
| 8 | $include_dir = realpath(dirname( __FILE__));
|
|---|
| 9 | require_once($include_dir . "/define.inc");
|
|---|
| 10 | require_once($include_dir . HTML2DATA_DIR . "conf/conf.php");
|
|---|
| 11 | require_once($include_dir . HTML2DATA_DIR . "include/module.inc");
|
|---|
| 12 | require_once($include_dir . HTML2DATA_DIR . "lib/glib.php");
|
|---|
| 13 | require_once($include_dir . HTML2DATA_DIR . "lib/slib.php");
|
|---|
| 14 | require_once($include_dir . HTML2DATA_DIR . "class/SC_View.php");
|
|---|
| 15 | require_once($include_dir . HTML2DATA_DIR . "class/SC_DbConn.php");
|
|---|
| 16 | require_once($include_dir . HTML2DATA_DIR . "class/SC_Session.php");
|
|---|
| 17 | require_once($include_dir . HTML2DATA_DIR . "class/SC_Query.php");
|
|---|
| 18 | require_once($include_dir . HTML2DATA_DIR . "class/SC_SelectSql.php");
|
|---|
| 19 | require_once($include_dir . HTML2DATA_DIR . "class/SC_CheckError.php");
|
|---|
| 20 | require_once($include_dir . HTML2DATA_DIR . "class/SC_PageNavi.php");
|
|---|
| 21 | require_once($include_dir . HTML2DATA_DIR . "class/SC_Date.php");
|
|---|
| 22 | require_once($include_dir . HTML2DATA_DIR . "class/SC_Image.php");
|
|---|
| 23 | require_once($include_dir . HTML2DATA_DIR . "class/SC_UploadFile.php");
|
|---|
| 24 | require_once($include_dir . HTML2DATA_DIR . "class/SC_SiteInfo.php");
|
|---|
| 25 | require_once($include_dir . HTML2DATA_DIR . "class/GC_SendMail.php");
|
|---|
| 26 | require_once($include_dir . HTML2DATA_DIR . "class/SC_FormParam.php");
|
|---|
| 27 | require_once($include_dir . HTML2DATA_DIR . "class/SC_CartSession.php");
|
|---|
| 28 | require_once($include_dir . HTML2DATA_DIR . "class/SC_SiteSession.php");
|
|---|
| 29 | require_once($include_dir . HTML2DATA_DIR . "class/SC_Customer.php");
|
|---|
| 30 | require_once($include_dir . HTML2DATA_DIR . "class/SC_Cookie.php");
|
|---|
| 31 | require_once($include_dir . HTML2DATA_DIR . "class/SC_Page.php");
|
|---|
| 32 | require_once($include_dir . HTML2DATA_DIR . "class/SC_Pdf.php");
|
|---|
| 33 | require_once($include_dir . HTML2DATA_DIR . "include/page_layout.inc");
|
|---|
| 34 | require_once($include_dir . HTML2DATA_DIR . "include/wakasa.inc");
|
|---|
| 35 | require_once($include_dir . HTML2DATA_DIR . "include/file_manager.inc");
|
|---|
| 36 |
|
|---|
| 37 | // ¥¢¥Ã¥×¥Ç¡¼¥È¤Ç¼èÆÀ¤·¤¿PHP¤òÆÉ¤ß½Ð¤¹
|
|---|
| 38 | sfLoadUpdateModule();
|
|---|
| 39 |
|
|---|
| 40 | ?> |
|---|