| 1 |
lars |
1 |
<!-- ============ GLOBAL DETAIL =========== -->
|
|
|
2 |
|
|
|
3 |
<h2 class="tab">Global Variables</h2>
|
|
|
4 |
|
|
|
5 |
<script type="text/javascript">tp1.addTabPage( document.getElementById( "tabPage2" ) );</script>
|
|
|
6 |
|
|
|
7 |
{section name=glob loop=$globals}
|
|
|
8 |
<a name="{$globals[glob].global_link}" id="{$globals[glob].global_link}"><!-- --></a>
|
|
|
9 |
<div style="background='{cycle values="#ffffff,#eeeeee"}'">
|
|
|
10 |
<h4>
|
|
|
11 |
<img src="{$subdir}media/images/Constants.gif" border="0" /> <strong class="Property">{$globals[glob].global_name}</strong> (line <span class="linenumber">{if $globals[glob].slink}{$globals[glob].slink}{else}{$globals[glob].line_number}{/if}</span>)
|
|
|
12 |
</h4>
|
|
|
13 |
<h4><i>{$globals[glob].global_type}</i> {$globals[glob].global_name} : {$globals[glob].global_value|replace:"\n":"<br />"}</h4>
|
|
|
14 |
{if $globals[glob].global_conflicts.conflict_type}
|
|
|
15 |
<p><span class="warning">Warning:</span> Conflicts with global variables:<br />
|
|
|
16 |
{section name=me loop=$globals[glob].global_conflicts.conflicts}
|
|
|
17 |
{$globals[glob].global_conflicts.conflicts[me]}<br />
|
|
|
18 |
{/section}
|
|
|
19 |
</p>
|
|
|
20 |
{/if}
|
|
|
21 |
|
|
|
22 |
{include file="docblock.tpl" sdesc=$globals[glob].sdesc desc=$globals[glob].desc tags=$globals[glob].tags}
|
|
|
23 |
</div>
|
|
|
24 |
{/section}
|