mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
106 lines
5.2 KiB
HTML
106 lines
5.2 KiB
HTML
<!--@if($oDocument->getCommentCount())-->
|
|
<div class="replyBox">
|
|
|
|
{@ $_comment_list = $oDocument->getComments() }
|
|
<!--@foreach($_comment_list as $key => $comment)-->
|
|
|
|
<div class="replyItem <!--@if($comment->get('depth'))-->reply<!--@end-->">
|
|
<!--@if($comment->get('depth'))-->
|
|
<div style="margin-left:{($comment->get('depth')-1)*20}px" class="replyIndent">
|
|
<!--@end-->
|
|
|
|
<a name="comment_{$comment->comment_srl}"></a>
|
|
|
|
<div class="replyOption">
|
|
<!--@if($comment->isGranted() || !$comment->get('member_srl'))-->
|
|
<a href="{getUrl('act','dispBoardDeleteComment','comment_srl',$comment->comment_srl)}"><img src="./images/common/buttonDeleteX.gif" alt="{$lang->cmd_delete}" width="12" height="13" /></a>
|
|
<a href="{getUrl('act','dispBoardModifyComment','comment_srl',$comment->comment_srl)}"><img src="./images/{$module_info->colorset}/buttonModifyE.gif" alt="{$lang->cmd_modify}" width="20" height="17" /></a>
|
|
<!--@end-->
|
|
<a href="{getUrl('act','dispBoardReplyComment','comment_srl',$comment->comment_srl)}"><img src="./images/{$module_info->colorset}/buttonReply.gif" alt="{$lang->cmd_reply}" width="20" height="17" /></a>
|
|
</div>
|
|
|
|
<div class="date">
|
|
|
|
<strong>{$comment->getRegdate('Y.m.d')}</strong> {$comment->getRegdate('H:i:s')}
|
|
|
|
<!--@if($grant->is_admin)-->
|
|
({$comment->get('ipaddress')})
|
|
<!--@end-->
|
|
</div>
|
|
|
|
<div class="author">
|
|
<!--@if(!$comment->member_srl)-->
|
|
<!--@if($comment->homepage)-->
|
|
<a href="{$comment->homepage}" onclick="window.open(this.href);return false;">{$comment->getNickName()}</a>
|
|
<!--@else-->
|
|
{$comment->getNickName()}
|
|
<!--@end-->
|
|
<!--@else-->
|
|
<div class="member_{$comment->member_srl}">{$comment->getNickName()}</div>
|
|
<!--@end-->
|
|
</div>
|
|
|
|
<!--@if($comment->get('voted_count')!=0)-->
|
|
<div class="voted">
|
|
({$lang->voted_count}:
|
|
<strong>{$comment->get('voted_count')}</strong>)
|
|
</div>
|
|
<!--@end-->
|
|
|
|
<div class="clear"></div>
|
|
|
|
<div class="replyContent">
|
|
<!--@if(!$comment->isAccessible())-->
|
|
<!--%import("filter/input_password.xml")-->
|
|
<div class="secretContent">
|
|
<form action="./" method="get" onsubmit="return procFilter(this, input_password)">
|
|
<input type="hidden" name="mid" value="{$mid}" />
|
|
<input type="hidden" name="page" value="{$page}" />
|
|
<input type="hidden" name="document_srl" value="{$comment->get('document_srl')}" />
|
|
<input type="hidden" name="comment_srl" value="{$comment->get('comment_srl')}" />
|
|
<div class="title">{$lang->msg_is_secret}</div>
|
|
<div class="content"><input type="password" name="password" class="inputTypeText" /><span class="button"><input type="submit" value="{$lang->cmd_input}" accesskey="s" /></span></div>
|
|
</form>
|
|
</div>
|
|
<!--@else-->
|
|
<!--@if($comment->getProfileImage())-->
|
|
<img src="{$comment->getProfileImage()}" align="left" class="commentProfileImage" alt="profile" />
|
|
<!--@end-->
|
|
{$comment->getContent(true)}
|
|
<!--@end-->
|
|
<div class="clear"></div>
|
|
</div>
|
|
|
|
<!--@if($comment->hasUploadedFIles())-->
|
|
<div class="fileAttached">
|
|
<ul>
|
|
{@ $_uploaded_files = $comment->getUploadedFiles() }
|
|
<!--@foreach($_uploaded_files as $key => $file)-->
|
|
<li><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} ({FileHandler::filesize($file->file_size)})({number_format($file->download_count)})</a></li>
|
|
<!--@end-->
|
|
</ul>
|
|
<div class="clear"></div>
|
|
</div>
|
|
<!--@end-->
|
|
|
|
<!--@if($comment->get('depth'))-->
|
|
</div>
|
|
<!--@end-->
|
|
</div>
|
|
<!--@end-->
|
|
|
|
<!-- 댓글 페이지 네비게이션 -->
|
|
<div class="pageNavigation">
|
|
<a href="{getUrl('cpage',1)}#comment" class="goToFirst"><img src="./images/common/bottomGotoFirst.gif" alt="{$lang->first_page}" width="7" height="5" /></a>
|
|
<!--@while($page_no = $comment_page_navigation->getNextPage())-->
|
|
<!--@if($cpage == $page_no)-->
|
|
<span class="current">{$page_no}</span>
|
|
<!--@else-->
|
|
<a href="{getUrl('cpage',$page_no)}#comment">{$page_no}</a>
|
|
<!--@end-->
|
|
<!--@end-->
|
|
<a href="{getUrl('cpage',$comment_page_navigation->last_page)}#comment" class="goToLast"><img src="./images/common/bottomGotoLast.gif" alt="{$lang->last_page}" width="7" height="5" /></a>
|
|
</div>
|
|
|
|
</div>
|
|
<!--@end-->
|