Changeset 6144 for temp


Ignore:
Timestamp:
2006/10/12 18:32:22 (20 years ago)
Author:
naka
Message:

* empty log message *

Location:
temp/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/conf/conf.php

    r6139 r6144  
    282282 
    283283/* URL */ 
    284 define ("URL_SITE_TOP", "/index.php");                  // ¥µ¥¤¥È¥È¥Ã¥× 
    285 define ("URL_CART_TOP", "/cart/index.php");             // ¥«¡¼¥È¥È¥Ã¥× 
    286 define ("URL_SHOP_CONFIRM", "/shopping/confirm.php");   // ¹ØÆþ³Îǧ¥Ú¡¼¥¸ 
    287 define ("URL_SHOP_PAYMENT", "/shopping/payment.php");   // ¤ª»Ùʧ¤¤ÊýË¡ÁªÂò¥Ú¡¼¥¸ 
    288 define ("URL_SHOP_TOP", "/shopping/index.php");         // ²ñ°÷¾ðÊóÆþÎÏ 
    289 define ("URL_SHOP_COMPLETE", "/shopping/complete.php"); // ¹ØÆþ´°Î»²èÌÌ 
    290 define ("URL_SHOP_CREDIT", "/shopping/card.php");       // ¥«¡¼¥É·èºÑ²èÌÌ 
    291 define ("URL_SHOP_LOAN", "/shopping/loan.php");         // ¥í¡¼¥ó·èºÑ²èÌÌ 
    292 define ("URL_SHOP_CONVENIENCE", "/shopping/convenience.php");   // ¥³¥ó¥Ó¥Ë·èºÑ²èÌÌ 
    293 define ("URL_PRODUCTS_TOP","/products/top.php");        // ¾¦Éʥȥåנ
    294 define ("LIST_P_HTML", "/products/list-p");             // ¾¦ÉʰìÍ÷(HTML½ÐÎÏ) 
    295 define ("LIST_C_HTML", "/products/list.php?mode=search&category_id=");              // ¾¦ÉʰìÍ÷(HTML½ÐÎÏ) 
    296 define ("DETAIL_P_HTML", "/products/detail.php?product_id=");           // ¾¦ÉʾܺÙ(HTML½ÐÎÏ) 
     284define ("URL_SITE_TOP", URL_DIR . "index.php");                 // ¥µ¥¤¥È¥È¥Ã¥× 
     285define ("URL_CART_TOP", URL_DIR . "cart/index.php");                // ¥«¡¼¥È¥È¥Ã¥× 
     286define ("URL_SHOP_CONFIRM", URL_DIR . "shopping/confirm.php");  // ¹ØÆþ³Îǧ¥Ú¡¼¥¸ 
     287define ("URL_SHOP_PAYMENT", URL_DIR . "shopping/payment.php");  // ¤ª»Ùʧ¤¤ÊýË¡ÁªÂò¥Ú¡¼¥¸ 
     288define ("URL_SHOP_TOP", URL_DIR . "shopping/index.php");            // ²ñ°÷¾ðÊóÆþÎÏ 
     289define ("URL_SHOP_COMPLETE", URL_DIR . "shopping/complete.php");    // ¹ØÆþ´°Î»²èÌÌ 
     290define ("URL_SHOP_CREDIT", URL_DIR . "shopping/card.php");      // ¥«¡¼¥É·èºÑ²èÌÌ 
     291define ("URL_SHOP_LOAN", URL_DIR . "shopping/loan.php");            // ¥í¡¼¥ó·èºÑ²èÌÌ 
     292define ("URL_SHOP_CONVENIENCE", URL_DIR . "shopping/convenience.php");  // ¥³¥ó¥Ó¥Ë·èºÑ²èÌÌ 
     293define ("URL_PRODUCTS_TOP", URL_DIR . "products/top.php");      // ¾¦Éʥȥåנ
     294define ("LIST_P_HTML", URL_DIR . "products/list-p");                // ¾¦ÉʰìÍ÷(HTML½ÐÎÏ) 
     295define ("LIST_C_HTML", URL_DIR . "products/list.php?mode=search&category_id=");             // ¾¦ÉʰìÍ÷(HTML½ÐÎÏ) 
     296define ("DETAIL_P_HTML", URL_DIR . "products/detail.php?product_id=");          // ¾¦ÉʾܺÙ(HTML½ÐÎÏ) 
    297297 
    298298/* 
  • temp/trunk/html/products/detail.php

    r6080 r6144  
    66 */ 
    77 
    8 require_once(DATA_PATH . "lib/slib.php"); 
    9 require_once(DATA_PATH . "class/SC_View.php"); 
    10 require_once(DATA_PATH . "class/SC_Query.php"); 
    11 require_once(DATA_PATH . "class/SC_Customer.php"); 
    12 require_once(DATA_PATH . "class/SC_Cookie.php"); 
    13 require_once(DATA_PATH . "class/SC_SiteInfo.php"); 
    14 require_once(DATA_PATH . "class/SC_PageNavi.php"); 
    15 require_once(DATA_PATH . "class/SC_CheckError.php"); 
    16 require_once(DATA_PATH . "data/class/SC_CartSession.php"); 
    17 require_once(DATA_PATH . "data/class/SC_FormParam.php"); 
    18 require_once(DATA_PATH . "data/class/SC_UploadFile.php"); 
     8require_once("../require.php"); 
    199require_once(DATA_PATH . "include/page_layout.inc"); 
    2010 
Note: See TracChangeset for help on using the changeset viewer.