[ 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
/
plugins
/
importexport
/
pubIds
/
templates
/
[
Home
]
File: selectIssue.tpl
{** * plugins/importexport/pubIds/templates/selectIssues.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. * * List of issues for whose objects to potentially export the public identifiers * *} {strip} {assign var="pageTitle" value="plugins.importexport.pubIds.export.selectIssue"} {assign var="pageCrumbTitle" value="plugins.importexport.pubIds.export.selectIssue"} {include file="common/header.tpl"} {/strip} <script type="text/javascript"> {literal} <!-- function toggleChecked() { var elements = document.getElementsByName("issueId[]"); for (var i=0; i < elements.length; i++) { elements[i].checked = !elements[i].checked; } } // --> {/literal} </script> <br /> <p>{translate key="plugins.importexport.pubIds.export.selectIssue.description"}</p> <div id="issues"> <form action="{plugin_url path="exportIssues"}" method="post" id="issues"> <table width="100%" class="listing"> <tr> <td colspan="5" class="headseparator"> </td> </tr> <tr class="heading" valign="bottom"> <td width="5%"> </td> <td width="60%">{translate key="issue.issue"}</td> <td width="15%">{translate key="editor.issues.published"}</td> <td width="15%">{translate key="editor.issues.numArticles"}</td> <td width="5%" align="right">{translate key="common.action"}</td> </tr> <tr> <td colspan="5" class="headseparator"> </td> </tr> {iterate from=issues item=issue} <tr valign="top"> <td><input type="checkbox" name="issueId[]" value="{$issue->getId()}"/></td> <td><a href="{url page="issue" op="view" path=$issue->getId()}" class="action">{$issue->getIssueIdentification()|strip_unsafe_html|nl2br}</a></td> <td>{$issue->getDatePublished()|date_format:"$dateFormatShort"|default:"—"}</td> <td>{$issue->getNumArticles()|escape}</td> <td align="right"><a href="{plugin_url path="exportIssue"|to_array:$issue->getId()}" class="action">{translate key="common.export"}</a></td> </tr> <tr> <td colspan="5" class="{if $issues->eof()}end{/if}separator"> </td> </tr> {/iterate} {if $issues->wasEmpty()} <tr> <td colspan="5" class="nodata">{translate key="issue.noIssues"}</td> </tr> <tr> <td colspan="5" class="endseparator"> </td> </tr> {else} <tr> <td colspan="2" align="left">{page_info iterator=$issues}</td> <td colspan="3" align="right">{page_links anchor="issues" name="issues" iterator=$issues}</td> </tr> {/if} </table> <p><input type="submit" value="{translate key="common.export"}" class="button defaultButton"/> <input type="button" value="{translate key="common.selectAll"}" class="button" onclick="toggleChecked()" /></p> </form> </div> {include file="common/footer.tpl"}