rhymix/modules/widget/tpl/downloaded_widget_list.html
bnu ef014baa03 #495
* widget모듈 새 XML 포맷 처리 코드 추가
    * info.xml 파일들 새 포맷으로 변경 

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4390 201d5d3c-b55e-5fd7-737f-ddc643e51545
2008-07-20 02:17:06 +00:00

61 lines
2.3 KiB
HTML

<h3>{$lang->widget} <span class="gray">{$lang->cmd_management}</span></h3>
<!-- 설명 -->
<div class="infoText">{nl2br($lang->about_widget)}</div>
<!-- 위젯의 목록 -->
<table cellspacing="0" class="adminTable">
<!--@if($lang_type == 'ko')-->
{@ $col_width = array(0,50,120,80,140,70)}
<!--@else if($lang_type == 'en')-->
{@ $col_width = array(0,80,120,80,140,80)}
<!--@else if($lang_type == 'zh-CN')-->
{@ $col_width = array(0,80,120,80,140,80)}
<!--@else if($lang_type == 'jp')-->
{@ $col_width = array(0,80,120,80,140,80)}
<!--@else if($lang_type == 'es')-->
{@ $col_width = array(0,60,120,75,140,110)}
<!--@else if($lang_type == 'ru')-->
{@ $col_width = array(0,60,120,80,140,125)}
<!--@else if($lang_type == 'fr')-->
{@ $col_width = array(0,60,120,65,140,70)}
<!--@end-->
<!--@foreach($col_width as $width)-->
<col <!--@if($width)-->width="{$width}" <!--@end-->/>
<!--@end-->
<thead>
<tr>
<th scope="col">{$lang->widget_name}</th>
<th scope="col">{$lang->version}</th>
<th scope="col">{$lang->author}</th>
<th scope="col">{$lang->date}</th>
<th scope="col">{$lang->path}</th>
<th scope="col">{$lang->cmd_generate_code}</th>
</tr>
</thead>
<tbody>
<!--@foreach($widget_list as $key => $val)-->
<tr>
<th scope="row" rowspan="2">
<a href="{getUrl('','module','widget','act','dispWidgetInfo','selected_widget',$val->widget)}" onclick="popopen(this.href,'widget_info');return false" class="blue">{$val->title}</a><br />
({$val->widget})
</th>
<td class="tahoma">{$val->version}</td>
<td>
<!--@foreach($val->author as $author)-->
<a href="{$author->homepage}" onclick="window.open(this.href);return false;">{$author->name}</a>
<!--@endforeach-->
</td>
<td class="tahoma">{$val->date}</td>
<td class="tahoma left">{$val->path}</td>
<td class="blue"><a href="{getUrl('','module','widget','act','dispWidgetGenerateCode','selected_widget',$val->widget)}" onclick="popopen(this.href,'widget_code_generate');return false">{$lang->cmd_generate_code}</a></td>
</tr>
<tr>
<td colspan="5" class="left">
{nl2br(trim($val->description))}
</td>
</tr>
<!--@end-->
</tbody>
</table>