summaryrefslogtreecommitdiff
path: root/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_sub_classes.tpl
blob: e605b3141b4aed9c49c260d71f763c37113f3fde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{if $children}
    <div class="sub-classes">
        {if $is_interface}
            <h4>Direct Known Sub-interfaces:</h4>
        {else}
            <h4>Direct Known Sub-classes:</h4>
        {/if}

        <div><small>
        {section name=child loop=$children}
            {if !$smarty.section.child.first}
                , {$children[child].link}
            {else}
                {$children[child].link}
            {/if}
        {/section}
        </small></div>
    </div>
{/if}