[ 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
/
doaj
/
templates
/
[
Home
]
File: articles.tpl
{** * @file plugins/importexport/doaj/templates/articles.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. * * Select articles for export. *} {strip} {assign var="pageTitle" value="plugins.importexport.common.export.selectArticle"} {assign var="pageCrumbTitle" value="plugins.importexport.common.export.selectArticle"} {include file="common/header.tpl"} {/strip} <script type="text/javascript">{literal} function toggleChecked() { var elements = document.getElementById('articlesForm').elements; for (var i=0; i < elements.length; i++) { if (elements[i].name == 'articleId[]') { elements[i].checked = !elements[i].checked; } } } {/literal}</script> <br /> <div id="articles"> <form action="{plugin_url path="process"}" method="post" id="articlesForm"> <input type="hidden" name="target" value="article" /> <table width="100%" class="listing"> <tr> <td colspan="5" class="headseparator"> </td> </tr> <tr class="heading" valign="bottom"> <td width="5%"> </td> <td width="25%">{translate key="issue.issue"}</td> <td width="40%">{translate key="article.title"}</td> <td width="25%">{translate key="article.authors"}</td> <td width="5%" align="right">{translate key="common.action"}</td> </tr> <tr> <td colspan="5" class="headseparator"> </td> </tr> {iterate from=articles item=articleData} {assign var=article value=$articleData.article} {assign var=issue value=$articleData.issue} {assign var=doajRegistered value=$article->getData('doaj::registered')} <tr valign="top"> <td><input type="checkbox" name="articleId[]" value="{$article->getId()}"/></td> <td><a href="{url page="issue" op="view" path=$issue->getId()}" class="action">{$issue->getIssueIdentification()|strip_tags}</a></td> <td><a href="{url page="article" op="view" path=$article->getId()}" class="action">{$article->getLocalizedTitle()|strip_unsafe_html}</a></td> <td>{$article->getAuthorString()|escape}</td> <td align="right"><nobr> {if !$doajRegistered} <a href="{plugin_url path="process" articleId=$article->getId() target="article" markRegistered=true}" class="action">{translate key="plugins.importexport.common.markRegistered"}</a> {/if} <a href="{plugin_url path="process" articleId=$article->getId() target="article" export=true}" class="action">{translate key="common.export"}</a> </nobr></td> </tr> <tr> <td colspan="5" class="{if $articles->eof()}end{/if}separator"> </td> </tr> {/iterate} {if $articles->wasEmpty()} <tr> <td colspan="5" class="endseparator"> </td> </tr> {else} <tr> <td colspan="2" align="left">{page_info iterator=$articles}</td> <td colspan="3" align="right">{page_links anchor="articles" name="articles" iterator=$articles}</td> </tr> {/if} </table> <p> <input type="submit" name="export" value="{translate key="common.export"}" title="{translate key="plugins.importexport.common.exportDescription"}" class="button{if !$hasCredentials} defaultButton{/if}"/> <input type="submit" name="markRegistered" value="{translate key="plugins.importexport.common.markRegistered"}" title="{translate key="plugins.importexport.common.markRegisteredDescription"}" class="button"/> <input type="button" value="{translate key="common.selectAll"}" class="button" onclick="toggleChecked()" /> </p> </form> </div> {include file="common/footer.tpl"}