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

const.tpl « templates « earthli « templates « frames « 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: c26ff92d7ed64e663b7fd6481943ce0646d9df80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{section name=consts loop=$consts}
<a name="const{$consts[consts].const_name}" id="{$consts[consts].const_name}"><!-- --></A>
<div class="{cycle values="evenrow,oddrow"}">

	<div class="const-header">
		<img src="{$subdir}media/images/{if $consts[consts].access == 'private'}PrivateVariable{else}Variable{/if}.png" />
		<span class="const-title">
			<span class="const-name">{$consts[consts].const_name}</span>
			 = <span class="const-default">{$consts[consts].const_value|replace:"\n":"<br />"}</span>
			(line <span class="line-number">{if $consts[consts].slink}{$consts[consts].slink}{else}{$consts[consts].line_number}{/if}</span>)
		</span>
	</div>

	{include file="docblock.tpl" sdesc=$consts[consts].sdesc desc=$consts[consts].desc tags=$consts[consts].tags}	
	
</div>
{/section}