rhymix/modules/widget/tpl/widget_detail_info.html
bnu 3ee3d63cb7 fix #2142 onclick이 사용된 새 창 열기를 target 속성으로 변경
- 통합검색 모듈 misol_town 스킨도 마찬가지로 수정
2017-09-11 18:21:16 +09:00

44 lines
1.7 KiB
HTML

<load target="css/widget.css" />
<load target="../../admin/tpl/css/admin.css" />
<h1>{$lang->widget}</h1>
<h2>{$lang->widget_maker}</h2>
<table class="x_table x_table-striped x_table-hover">
<tr>
<th scope="row"><div>{$lang->title}</div></th>
<td>{$widget_info->title} ver {$widget_info->version}</td>
</tr>
<tr>
<th scope="row"><div>{$lang->author}</div></th>
<td>
<!--@foreach($widget_info->author as $author)-->
{$author->name} <!--@if($author->homepage || $author->email_address)-->(<!--@if($author->homepage)--><a href="{$author->homepage}" target="_blank" rel="noopener">{$author->homepage}</a><!--@end--><!--@if($author->homepage && $author->email_address)-->, <!--@end--><!--@if($author->email_address)--><a href="mailto:{$author->email_address}">{$author->email_address}</a><!--@end-->)<!--@end--><br />
<!--@endforeach-->
</td>
</tr>
<!--@if($widget_info->homepage)-->
<tr>
<th scope="row"><div>{$lang->homepage}</div></th>
<td><a href="{$widget_info->homepage}" target="_blank" rel="noopener">{$widget_info->homepage}</a></td>
</tr>
<!--@end-->
<tr>
<th scope="row"><div>{$lang->regdate}</div></th>
<td>{zdate($widget_info->date, 'Y-m-d')}</td>
</tr>
<!--@if($widget_info->license || $widget_info->license_link)-->
<tr>
<th scope="row"><div>{$lang->widget_license}</div></th>
<td>
{nl2br(trim($widget_info->license))}
<!--@if($widget_info->license_link)-->
<p><a href="{$widget_info->license_link}" onclick="window.close(); return false;">{$widget_info->license_link}</a></p>
<!--@end-->
</td>
</tr><!--@end-->
<!--@if($widget_info->description)-->
<tr>
<th scope="row"><div>{$lang->description}</div></th>
<td>{nl2br(trim($widget_info->description))}</td>
</tr><!--@end-->
</table>