Welcome to mirror list, hosted at ThFree Co, Russian Federation.

errors.tpl « templates « HandS « templates « Smarty « HTML « Converters « phpDocumentor « PhpDocumentor-1.3.2 « libs - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1576a8224b355cf7e514fadc86f1d25e1cd233aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{include file="header.tpl" noleftindex=true}
{section name=files loop=$files}
<a href="#{$files[files].file}">{$files[files].file}</a><br>
{/section}
{foreach key=file item=issues from=$all}
<a name="{$file}"></a>
<h1>{$file}</h1>
{if count($issues.warnings)}
<h2>Warnings:</h2><br>
{section name=warnings loop=$issues.warnings}
<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br>
{/section}
{/if}
{if count($issues.errors)}
<h2>Errors:</h2><br>
{section name=errors loop=$issues.errors}
<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br>
{/section}
{/if}
{/foreach}
{include file="footer.tpl"}