summaryrefslogtreecommitdiff
path: root/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/const.tpl
blob: 88856c4b651fb1df11d930c3d4d6ebf9c37856ac (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>
	<p>[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}

  <br />
	<div class="top">[ <a href="#top">Top</a> ]</div><br />
{/if}
{/section}