Changeset 20838


Ignore:
Timestamp:
2011/04/14 17:20:11 (13 years ago)
Author:
shutta
Message:

refs #1261 (モバイル: カテゴリブロックのブロック化)
r20810 の影響によりカテゴリー部分が表示されなくなっていた。
カテゴリー部分を完全にブロック化するように修正。

Location:
branches/version-2_11-dev
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_11-dev/data/Smarty/templates/mobile/frontparts/bloc/category.tpl

    r20828 r20838  
    2323*}--> 
    2424<!--▼商品カテゴリーここから--> 
     25<!--{1|numeric_emoji}-->商品カテゴリ<br> 
    2526<!--{section name=cnt loop=$arrCat}--> 
    2627<!--{assign var=disp_name value="`$arrCat[cnt].category_name`"}--> 
  • branches/version-2_11-dev/data/Smarty/templates/mobile/index.tpl

    r20764 r20838  
    2323*}--> 
    2424<!-- ▼メニュー ここから --> 
    25 <!--{1|numeric_emoji}-->商品カテゴリ<br> 
    26 <!--{include_php file=`$smarty.const.HTML_REALDIR`frontparts/bloc/category.php}--> 
    2725<a href="products/search.php" accesskey="2"><!--{2|numeric_emoji}-->商品検索</a><br> 
    2826<!--{if $isLogin eq true}--> 
  • branches/version-2_11-dev/html/install/sql/insert_data.sql

    r20818 r20838  
    1111INSERT INTO dtb_bloc (device_type_id, bloc_id, bloc_name, tpl_path, filename, create_date, update_date, php_path, deletable_flg) VALUES (1, 2, '新着情報', 'news.tpl', 'news', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'frontparts/bloc/news.php', 0); 
    1212INSERT INTO dtb_bloc (device_type_id, bloc_id, bloc_name, tpl_path, filename, create_date, update_date, php_path, deletable_flg) VALUES (1, 3, 'おすすめ商品', 'recommend.tpl', 'recommend', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'frontparts/bloc/recommend.php', 0); 
     13INSERT INTO dtb_bloc (device_type_id, bloc_id, bloc_name, tpl_path, filename, create_date, update_date, php_path, deletable_flg) VALUES (1, 4, 'カテゴリ', 'category.tpl', 'category', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'frontparts/bloc/category.php', 0); 
    1314INSERT INTO dtb_bloc (device_type_id, bloc_id, bloc_name, tpl_path, filename, create_date, update_date, php_path, deletable_flg) VALUES (2, 1, '新着情報', 'news.tpl', 'news', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'frontparts/bloc/news.php', 0); 
    1415INSERT INTO dtb_bloc (device_type_id, bloc_id, bloc_name, tpl_path, filename, create_date, update_date, php_path, deletable_flg) VALUES (2, 2, 'ログイン', 'login.tpl', 'login', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'frontparts/bloc/login.php', 0); 
     
    109110INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (1, 1, 2, 2, 1, 0); 
    110111INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (1, 1, 2, 3, 2, 0); 
     112INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (1, 1, 2, 4, 3, 0); 
    111113INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 1, 4, 1, 1, 0); 
    112114INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 1, 4, 2, 2, 0); 
Note: See TracChangeset for help on using the changeset viewer.