summaryrefslogtreecommitdiff
path: root/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_constant_summary.tpl
blob: 8049c4b0aea92895d6718de8418e1f0e5c823ee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{if $consts || $iconsts}
    <hr size="1" noshade="noshade"/>
    <a name="constant-summary"></a>
    <table class="constant-summary" cellspacing="1">
        <tr>
            <th colspan="3">Constant Summary</th>
        </tr>
        {section name=const loop=$consts}
            <tr>
                <td class="type" nowrap="nowrap">{strip}{include file="_get_constant_type.tpl" const=$consts[const].const_value}{/strip}</td>
                <td class="name"><a href="{$consts[const].id}">{$consts[const].const_name}</a></td>
                <td class="description" width="100%">
                    {$consts[const].sdesc}

                    {if $consts[const].desc}
                        {$consts[const].desc}
                    {/if}
                </td>
            </tr>
        {/section}
    </table>
{/if}