Ignore:
Timestamp:
2007/01/21 17:59:30 (19 years ago)
Author:
kakinaka
Message:
 
Location:
temp/test-xoops.ec-cube.net
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • temp/test-xoops.ec-cube.net/data/Smarty/templates/list.tpl

    r1163 r1203  
    2121             
    2222            <tr align="center" bgcolor="#aaaaff"> 
    23                 <td><strong>¥·¥ç¥Ã¥×̾</strong></td> 
    24                 <td><strong>¥µ¥¤¥ÈURL</strong></td> 
    25                 <td><strong>¥Ð¡¼¥¸¥ç¥ó</strong></td> 
     23                <td><strong>Âбþ¾õ¶·</strong></td> 
     24                <td><strong>¥¹¥ì¥Ã¥É</strong></td> 
    2625                <td><strong>ÅÐÏ¿Æü»þ</strong></td> 
    2726            </tr> 
    2827            <!--{foreach key=key item=item from=$arrList}--> 
    2928            <tr bgcolor="#ffffff"> 
    30                 <td><a href="<!--{$item.site_url}-->"><!--{$item.shop_name|escape}--></a></td> 
    31                 <td><a href="<!--{$item.site_url}-->"><!--{$item.site_url}--></a></td> 
    32                 <td align="center"><!--{$item.cube_ver}--></td> 
    33                 <td><!--{$item.create_date}--></td> 
     29                <td><!--{$arrResponse[$item.topic_response]}--></td> 
     30                <td><!--{$item.topic_title}--></td> 
     31                <td><!--{$item.topic_time}--></td> 
    3432            </tr> 
    3533            <!--{/foreach}--> 
  • temp/test-xoops.ec-cube.net/html/test/kakinaka/list.php

    r1199 r1203  
    22 
    33require_once("../../require.php"); 
     4require_once("../../module/nowbb/config.php"); 
    45 
    56//---- ¥Ú¡¼¥¸É½¼¨ÍÑ¥¯¥é¥¹ 
     
    1617$sql = 'SELECT topic_id, topic_title, topic_response, topic_time FROM xoops_bb_topics ORDER BY topic_response, topic_id'; 
    1718 
    18 $arrRet = $objQuery->getAll($sql); 
     19$arrList = $objQuery->getAll($sql); 
     20$objPage->arrList = $arrList; 
     21$objPage->arrResponse = $arrResponse; 
    1922 
    20 sfprintr($arrRet); 
    21  
    22 $objView->display($objPage->tpl_mainpage) 
     23$objView->assignobj($arrList); 
     24$objView->display($objPage->tpl_mainpage); 
    2325 
    2426?> 
Note: See TracChangeset for help on using the changeset viewer.