[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
ojs
/
248
/
templates
/
comment
/
[
Home
]
File: comments.tpl
{** * templates/comment/comments.tpl * * Copyright (c) 2013-2019 Simon Fraser University * Copyright (c) 2003-2019 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * Display comments on an article. * *} {strip} {if $comment} {assign var=pageTitle value="comments.readerComments"} {assign var=pageCrumbTitleTranslated value=$comment->getTitle()|escape|truncate:50:"..."|default:" "} {else} {assign var=pageTitle value="comments.readerComments"} {/if} {include file="common/header.tpl"} {/strip} {if $enableComments==COMMENTS_UNAUTHENTICATED || (($enableComments==COMMENTS_AUTHENTICATED || $enableComments==COMMENTS_ANONYMOUS) && $isUserLoggedIn)} {assign var=postingAllowed value=1} {else} {assign var=postingAllowed value=0} {/if} <div id="comments"> {if $comment} {assign var=user value=$comment->getUser()} <div id="comment"> <h3>{$comment->getTitle()|escape|default:" "}</h3> <h4> {if $user} {url|assign:"publicProfileUrl" page="user" op="viewPublicProfile" path=$user->getId()} {translate key="comments.authenticated" userName=$user->getFullName()|escape publicProfileUrl=$publicProfileUrl} {elseif $comment->getPosterName()} {translate key="comments.anonymousNamed" userName=$comment->getPosterName()|escape} {else} {translate key="comments.anonymous"} {/if} ({$comment->getDatePosted()|date_format:$dateFormatShort}) </h4> </div> <p> {if $parent} {assign var=parentId value=$parent->getCommentId()} {url|assign:"url" page="comment" op="view" path=$articleId|to_array:$parentId} <em>{translate key="comments.inResponseTo" url=$url title=$parent->getTitle()|escape|default:" "}</em><br /> {/if} {assign var="hasPriorAction" value=0}{* Track whether to add "|" between actions *} {if $comment->getPosterEmail()} {translate|assign:"emailReply" key="comments.emailReply"} {mailto text=$emailReply encode="javascript" address=$comment->getPosterEmail() subject=$comment->getTitle()|default:" " extra='class="action"'} {assign var="hasPriorAction" value=1} {/if} {if $postingAllowed} {if $hasPriorAction} | {/if} <a href="{url op="add" path=$articleId|to_array:$galleyId:$comment->getId()}" class="action">{translate key="comments.postReply"}</a> {assign var="hasPriorAction" value=1} {/if} {if $isManager} {if $hasPriorAction} | {/if} <a href="{url op="delete" path=$articleId|to_array:$galleyId:$comment->getId()}" {if $comment->getChildCommentCount()!=0}onclick="return confirm('{translate|escape:"jsparam" key="comments.confirmDeleteChildren"}')" {/if}class="action">{translate key="comments.delete"}</a> {assign var="hasPriorAction" value=1} {/if} <br /> </p> {$comment->getBody()|strip_unsafe_html|nl2br} <br /><br /> <div class="separator"></div> {if $comments}<h3>{translate key="comments.replies"}</h3>{/if} {/if} {foreach from=$comments item=child} {assign var=user value=$child->getUser()} {assign var=childId value=$child->getCommentId()} <h4><a href="{url op="view" path=$articleId|to_array:$galleyId:$childId}" target="_parent">{$child->getTitle()|escape|default:" "}</a></h4> <h5> {if $user} {url|assign:"publicProfileUrl" page="user" op="viewPublicProfile" path=$user->getId()} {translate key="comments.authenticated" userName=$user->getFullName()|escape publicProfileUrl=$publicProfileUrl} {elseif $child->getPosterName()} {translate key="comments.anonymousNamed" userName=$child->getPosterName()|escape} {else} {translate key="comments.anonymous"} {/if} ({$child->getDatePosted()|date_format:$dateFormatShort}) </h5> {assign var="hasPriorAction" value=0} {if $child->getPosterEmail()} {translate|assign:"emailReply" key="comments.emailReply"} {mailto text=$emailReply encode="javascript" address=$child->getPosterEmail()|escape subject=$child->getTitle()|escape|default:" " extra='class="action"'} {assign var="hasPriorAction" value=1} {/if} {if $postingAllowed} {if $hasPriorAction} | {/if} <a href="{url op="add" path=$articleId|to_array:$galleyId:$childId}" class="action">{translate key="comments.postReply"}</a> {assign var="hasPriorAction" value=1} {/if} {if $isManager} {if $hasPriorAction} | {/if} <a href="{url op="delete" path=$articleId|to_array:$galleyId:$child->getCommentId()}" {if $child->getChildCommentCount()!=0}onclick="return confirm('{translate|escape:"jsparam" key="comments.confirmDeleteChildren"}')" {/if}class="action">{translate key="comments.delete"}</a> {assign var="hasPriorAction" value=1} {/if} <br /> {translate|assign:"readMore" key="comments.readMore"} {url|assign:"moreUrl" op="view" path=$articleId|to_array:$galleyId:$childId} {assign var=moreLink value="<a href=\"$moreUrl\">$readMore</a>"} <p>{$child->getBody()|strip_tags|nl2br|truncate:300:"... $moreLink"}</p> {assign var=grandChildren value=$child->getChildren()} {if $grandChildren}<ul>{/if} {foreach from=$child->getChildren() item=grandChild} {assign var=user value=$grandChild->getUser()} <li> <a href="{url op="view" path=$articleId|to_array:$galleyId:$grandChild->getCommentId()}" target="_parent">{$grandChild->getTitle()|escape|default:" "}</a> {if $grandChild->getChildCommentCount()==1}{translate key="comments.oneReply"}{elseif $grandChild->getChildCommentCount()>0}{translate key="comments.nReplies" num=$grandChild->getChildCommentCount()}{/if}<br /> {if $user} {url|assign:"publicProfileUrl" page="user" op="viewPublicProfile" path=$user->getId()} {translate key="comments.authenticated" userName=$user->getFullName()|escape publicProfileUrl=$publicProfileUrl} {elseif $grandChild->getPosterName()} {translate key="comments.anonymousNamed" userName=$grandChild->getPosterName()|escape} {else} {translate key="comments.anonymous"} {/if} ({$grandChild->getDatePosted()|date_format:$dateFormatShort}) </li> {/foreach} {if $grandChildren} </ul> {/if} {foreachelse} {if !$comment} {translate key="comments.noComments"} {/if} {/foreach} {if $postingAllowed} <p><a class="action" href="{url op="add" path=$articleId|to_array:$galleyId}" target="_parent">{translate key="rt.addComment"}</a></p> {/if} </div> {include file="common/footer.tpl"}