summaryrefslogtreecommitdiff
path: root/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_constant_details.tpl
blob: bca71e17eae70191b3d6988708cbb27a8919b409 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{if $consts}
    <hr size="1" noshade="noshade"/>
    <a name="constant-details"></a>
    <table class="constant-details" cellspacing="1">
        <tr>
            <th>Constant Details</th>
        </tr>
        {section name=const loop=$consts}
            <tr>
                <td>
                    <a name="{$consts[const].const_dest}"></a>

                    <h3>{$consts[const].const_name}</h3>

                    <p>{$consts[const].sdesc}</p>

                    {if $consts[const].desc}
                        {$consts[const].desc}
                    {/if}

                    <div class="tag-list">
                        <h4 class="tag">Type:</h4>
                        <div class="tag-data">{include file="_get_constant_type.tpl" const=$consts[const].const_value}</div>
                        <h4 class="tag">Value:</h4>
                        <div class="tag-data">{$consts[const].const_value}</div>
                    </div>
                    {include file="_tags.tpl" tags=$consts[const].tags}
                    <p/>
                </td>
            </tr>
        {/section}
    </table>
{/if}