source: branches/feature-module-update/data/Smarty/templates/rss/product.tpl @ 15078

Revision 15078, 1.2 KB checked in by nanasess, 17 years ago (diff)

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

  • UTF-8 に変更
  • slib.php, glib.php のクラス化
  • LC_Page の抽象化(一部)
Line 
1<?xml version="1.0" encoding="<!--{$encode}-->"?>
2<!--{*
3 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
4 *
5 * http://www.lockon.co.jp/
6 *}-->
7<rss version="2.0">
8
9<!--{* channel要素 *}-->
10<channel>
11<title><!--{$title|sf_mb_convert_encoding:$encode}--></title>
12<shop_name><!--{$arrSiteInfo.shop_name|sf_mb_convert_encoding:$encode}--></shop_name>
13<shop_kana><!--{$arrSiteInfo.shop_kana|sf_mb_convert_encoding:$encode}--></shop_kana>
14<site_url><!--{$smarty.const.SITE_URL}--></site_url>
15<description><!--{section name=cnt loop=$arrProduct}--><!--{$arrProduct[cnt].product_id|sf_mb_convert_encoding:$encode}-->,<!--{/section}--></description>
16<language>ja</language>
17<docs>http://backend.userland.com/rss</docs>
18<!--{section name=cnt loop=$arrProduct}-->
19    <!--{* 1つのitem要素を出力する *}-->
20    <item>
21        <link><!--{$smarty.const.SITE_URL}-->rss/product.php?product_id=<!--{$arrProduct[cnt].product_id}--></link>
22        <!--{foreach key=key item=item from=$arrProductKeys}-->
23            <<!--{$item}-->><!--{$arrProduct[cnt][$item]|escape|sf_mb_convert_encoding:$encode}--></<!--{$item}-->>
24        <!--{/foreach}-->
25    </item>
26<!--{/section}-->
27</channel>
28</rss >
Note: See TracBrowser for help on using the repository browser.