| Server IP : 127.0.1.1 / Your IP : 216.73.216.60 Web Server : Apache/2.4.58 (Ubuntu) System : Linux nepub 6.8.0-88-generic #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/public_html/lib/pkp/templates/controllers/informationCenter/ |
Upload File : |
{**
* templates/controllers/informationCenter/note.tpl
*
* Copyright (c) 2014-2021 Simon Fraser University
* Copyright (c) 2003-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* Display a single information center note.
*
*}
{* These variables are both "safe" to be used unescaped. *}
{assign var="noteId" value=$note->getId()}
{assign var="formId" value="deleteNoteForm-$noteId"}
<script type="text/javascript">
$(function() {ldelim}
// Attach the form handler.
$('#{$formId}').pkpHandler('$.pkp.controllers.form.AjaxFormHandler', {ldelim}
baseUrl: {$baseUrl|json_encode}
{rdelim});
{rdelim});
</script>
<div id="note-{$noteId}" class="note">
<div class="details">
<span class="user">
{assign var=noteUser value=$note->getUser()}
{$noteUser->getFullName()|escape}
</span>
<span class="date">
{$note->getDateCreated()|date_format:$datetimeFormatShort}
</span>
{if ($notesDeletable && array_intersect(array(ROLE_ID_MANAGER, ROLE_ID_SUB_EDITOR), (array)$userRoles))}
<div class="actions">
{if $notesDeletable && array_intersect(array(ROLE_ID_MANAGER, ROLE_ID_SUB_EDITOR), (array)$userRoles)}
<form class="pkp_form" id="{$formId}" action="{url op="deleteNote" noteId=$noteId params=$linkParams}">
{csrf}
{assign var=deleteNoteButtonId value="deleteNote-$noteId"}
{include file="linkAction/buttonConfirmationLinkAction.tpl" titleIcon="modal_delete" buttonSelector="#$deleteNoteButtonId" dialogText="informationCenter.deleteConfirm"}
<button type="submit" id="{$deleteNoteButtonId}" class="pkp_button pkp_button_offset">{translate key='common.delete'}</button>
</form>
{/if}
</div>
{/if}
</div>
<div class="message">
{if $noteFileDownloadLink}
{include file="linkAction/linkAction.tpl" action=$noteFileDownloadLink contextId=$note->getId()}
{/if}
{include file="controllers/revealMore.tpl" content=$note->getContents()|strip_unsafe_html}
</div>
</div>