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

const.tpl « templates « default « 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: aeab7293a745e120fc3bbcdc937f0c8e8818df90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{section name=consts loop=$consts}
{if $show == 'summary'}
	var {$consts[consts].const_name}, {$consts[consts].sdesc}<br>
{else}
	<a name="{$consts[consts].const_dest}"></a>
	<p></p>
	<h4>{$consts[consts].const_name} = <span class="value">{$consts[consts].const_value|replace:"\n":"<br>\n"|replace:" ":"&nbsp;"|replace:"\t":"&nbsp;&nbsp;&nbsp;"}</span></h4>
	<div class="indent">
		<p class="linenumber">[line {if $consts[consts].slink}{$consts[consts].slink}{else}{$consts[consts].line_number}{/if}]</p>
		{include file="docblock.tpl" sdesc=$consts[consts].sdesc desc=$consts[consts].desc tags=$consts[consts].tags}
	</div>
	<p class="top">[ <a href="#top">Top</a> ]</p>
{/if}
{/section}