Ignore:
Timestamp:
2007/07/20 15:58:59 (17 years ago)
Author:
nanasess
Message:

r15064 から svn cp
とりあえず暫定コミット.

  • UTF-8 に変更
  • slib.php, glib.php のクラス化
  • LC_Page の抽象化(一部)
Location:
branches/feature-module-update
Files:
1 edited
2 copied

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update

    • Property svn:ignore set to
      .cache

      .settings

      .projectOptions
  • branches/feature-module-update/html/frontparts/bloc/search_products.php

    r12157 r15078  
    77class LC_SearchProductsPage { 
    88    function LC_SearchProductsPage() { 
    9         /** ɬ¤ºÊѹ¹¤¹¤ë **/ 
    10         $this->tpl_mainpage = BLOC_PATH . 'search_products.tpl';    // ¥á¥¤¥ó 
     9        /** 必ず変更する **/ 
     10        $this->tpl_mainpage = BLOC_PATH . 'search_products.tpl';    // メイン 
    1111    } 
    1212} 
    1313 
    1414$objSubPage = new LC_SearchProductsPage(); 
    15 $arrSearch = array();   // ¸¡º÷¹àÌÜɽ¼¨ÍÑ 
     15$arrSearch = array();   // 検索項目表示用 
    1616 
    17 // ÁªÂòÃæ¤Î¥«¥Æ¥´¥êID¤òȽÄꤹ¤ë 
     17// 選択中のカテゴリIDを判定する 
    1818$objSubPage->category_id = sfGetCategoryId($_GET['product_id'], $_GET['category_id']); 
    19 // ¥«¥Æ¥´¥ê¸¡º÷ÍÑÁªÂò¥ê¥¹¥È 
    20 $arrRet = sfGetCategoryList('', true, '¡¡'); 
     19// カテゴリ検索用選択リスト 
     20$arrRet = sfGetCategoryList('', true, ' '); 
    2121 
    2222if(is_array($arrRet)) { 
    23     // ʸ»ú¥µ¥¤¥º¤òÀ©¸Â¤¹¤ë 
     23    // 文字サイズを制限する 
    2424    foreach($arrRet as $key => $val) { 
    2525        $arrRet[$key] = sfCutString($val, SEARCH_CATEGORY_LEN); 
Note: See TracChangeset for help on using the changeset viewer.