first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-06-08 17:09:23 -04:00
commit df3a033196
17887 changed files with 8637778 additions and 0 deletions
@@ -0,0 +1,28 @@
{**
* templates/authorDashboard/reviewRoundTab.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.
*
* Build a review round tab markup (for any review stage).
*}
<script type="text/javascript">
// Attach the JS file tab handler.
$(function() {ldelim}
$('#{$reviewRoundTabsId}').pkpHandler(
'$.pkp.controllers.TabHandler',
{ldelim}
{assign var=roundIndex value=$lastReviewRoundNumber-1}
selected: {$roundIndex}
{rdelim}
);
{rdelim});
</script>
<div id="{$reviewRoundTabsId}" class="pkp_controllers_tab">
<ul>
{foreach from=$reviewRounds item=reviewRound}
<li><a href="{url router=\PKP\core\PKPApplication::ROUTE_COMPONENT component="tab.authorDashboard.AuthorDashboardReviewRoundTabHandler" op="fetchReviewRoundInfo" submissionId=$submission->getId() stageId=$reviewRound->getStageId() reviewRoundId=$reviewRound->getId() escape=false}">{translate key="submission.round" round=$reviewRound->getRound()}</a></li>
{/foreach}
</ul>
</div>