- Timestamp:
- 2006/10/24 17:25:48 (20 years ago)
- Location:
- temp/trunk
- Files:
-
- 5 edited
-
data/Smarty/templates/admin/system/module.tpl (modified) (previous)
-
data/conf/conf.php (modified) (1 diff)
-
data/conf/core.php (modified) (1 diff)
-
html/admin/downloads/module/ebis_tag.php (modified) (1 diff)
-
html/admin/system/module.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
temp/trunk/data/conf/conf.php
r6548 r6557 11 11 require_once($CONF_PHP_PATH ."/../install.inc"); 12 12 require_once($CONF_PHP_PATH ."/core.php" ); 13 14 //-------------------------------------------------------------------------------------------------------- 15 /** ¥Ñ¥¹´ØÏ¢ **/ 16 // ¥æ¡¼¥¶¥Õ¥¡¥¤¥ëÊݸÀè 17 define("USER_DIR", "user_data/"); 18 define("USER_PATH", HTML_PATH . USER_DIR); 19 20 // ¥æ¡¼¥¶¥¤¥ó¥¯¥ë¡¼¥É¥Õ¥¡¥¤¥ëÊݸÀè 21 define("USER_INC_PATH", USER_PATH . "include/"); 22 23 // ¥Ö¥í¥Ã¥¯¥Õ¥¡¥¤¥ëÊݸÀè 24 define("BLOC_DIR", "include/bloc/"); 25 define("BLOC_PATH", USER_PATH . BLOC_DIR); 26 27 // ¥æ¡¼¥¶¡¼ºîÀ®²èÌ̤Υǥե©¥ë¥ÈPHP¥Õ¥¡¥¤¥ë 28 define("USER_DEF_PHP", HTML_PATH . "__default.php"); 29 30 // ¤½¤Î¾²èÌ̤Υǥե©¥ë¥È¥Ú¡¼¥¸¥ì¥¤¥¢¥¦¥È 31 define("DEF_LAYOUT", "products/list.php"); 32 33 // ¥À¥¦¥ó¥í¡¼¥É¥â¥¸¥å¡¼¥ëÊݸ¥Ç¥£¥ì¥¯¥È¥ê 34 define("MODULE_DIR", "admin/downloads/module/"); 35 define("MODULE_PATH", HTML_PATH . MODULE_DIR); 36 //-------------------------------------------------------------------------------------------------------- 37 13 38 //-------------------------------------------------------------------------------------------------------- 14 39 /** ¥¢¥Ã¥×¥Ç¡¼¥È´ÉÍýÍÑ **/ -
temp/trunk/data/conf/core.php
r6203 r6557 11 11 */ 12 12 /////////////////////////////////////////////////////////// 13 14 // ¥æ¡¼¥¶¥Õ¥¡¥¤¥ëÊݸÀè15 define("USER_DIR", "user_data/");16 define("USER_PATH", HTML_PATH . USER_DIR);17 18 // ¥æ¡¼¥¶¥¤¥ó¥¯¥ë¡¼¥É¥Õ¥¡¥¤¥ëÊݸÀè19 define("USER_INC_PATH", USER_PATH . "include/");20 21 // ¥Ö¥í¥Ã¥¯¥Õ¥¡¥¤¥ëÊݸÀè22 define("BLOC_DIR", "include/bloc/");23 define("BLOC_PATH", USER_PATH . BLOC_DIR);24 25 // ¥æ¡¼¥¶¡¼ºîÀ®²èÌ̤Υǥե©¥ë¥ÈPHP¥Õ¥¡¥¤¥ë26 define("USER_DEF_PHP", HTML_PATH . "__default.php");27 28 // ¤½¤Î¾²èÌ̤Υǥե©¥ë¥È¥Ú¡¼¥¸¥ì¥¤¥¢¥¦¥È29 define("DEF_LAYOUT", "products/list.php");30 13 31 14 // DB¥¨¥é¡¼¥á¡¼¥ëÁ÷¿®Àè -
temp/trunk/html/admin/downloads/module/ebis_tag.php
r6441 r6557 8 8 */ 9 9 10 print("test");10 require_once("../../require.php"); 11 11 12 //¥Ú¡¼¥¸´ÉÍý¥¯¥é¥¹ 13 class LC_Page { 14 //¥³¥ó¥¹¥È¥é¥¯¥¿ 15 function LC_Page() { 16 //¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È¤Î»ØÄê 17 $this->tpl_mainpage = MODULE_PATH . 'module.tpl'; 18 } 19 } 20 $objView->assignobj($objPage); //ÊÑ¿ô¤ò¥Æ¥ó¥×¥ì¡¼¥È¤Ë¥¢¥µ¥¤¥ó¤¹¤ë 21 $objView->display(MAIN_FRAME); //¥Æ¥ó¥×¥ì¡¼¥È¤Î½ÐÎÏ 22 //------------------------------------------------------------------------------------------------------- 12 23 ?> -
temp/trunk/html/admin/system/module.php
r6462 r6557 7 7 require_once("../require.php"); 8 8 9 //¥Ú¡¼¥¸´ÉÍý¥¯¥é¥¹ 10 class LC_Page { 11 //¥³¥ó¥¹¥È¥é¥¯¥¿ 12 function LC_Page() { 13 //¥á¥¤¥ó¥Æ¥ó¥×¥ì¡¼¥È¤Î»ØÄê 14 $this->tpl_mainpage = 'system/module.tpl'; 15 $this->tpl_subnavi = 'system/subnavi.tpl'; 16 $this->tpl_mainno = 'system'; 17 $this->tpl_subno = 'module'; 18 $this->tpl_subtitle = '¥â¥¸¥å¡¼¥ë´ÉÍý'; 19 } 20 } 9 c 21 10 22 11 $objPage = new LC_Page();
Note: See TracChangeset
for help on using the changeset viewer.
