summaryrefslogtreecommitdiff
path: root/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_constructor_details.tpl
blob: ec4fd0a2a51a372489675e73d81448f6e98020ea (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{if $methods}
    {section name=method loop=$methods}
        {if $methods[method].function_name == "__construct"}
            <hr size="1" noshade="noshade"/>
            <a name="sec-method"></a>
            <table class="method-details" cellspacing="1">
                <tr>
                    <th colspan="3">Constructor Details</th>
                </tr>
                <tr>
                    <td class="method-data">
                        <a name="{$methods[method].method_dest}"></a>

                        <h2>{$methods[method].function_name}</h2>

                        <table class="method-detail" cellspacing="0">
                            <tr>
                                <td nowrap="nowrap">{strip}
                                    {if $methods[method].access == "protected"}
                                        protected&nbsp;
                                    {/if}

                                    {if $methods[method].access == "public"}
                                        public&nbsp;
                                    {/if}

                                    {if $methods[method].abstract == "1"}
                                        abstract&nbsp;
                                    {/if}

                                    {if $methods[method].static == "1"}
                                        static&nbsp;
                                    {/if}

                                    <strong>{$methods[method].function_name}</strong>
                                {/strip}</td>
                                <td nowrap="nowrap">{strip}
                                    {$methods[method].ifunction_call.params}
                                {/strip}</td>
                            </tr>
                        </table>

                        <p>{$methods[method].sdesc}</p>

                        {if $methods[method].desc}
                            {$methods[method].desc}
                        {/if}

                        {include file="_tags.tpl" tags=$methods[method].tags}
                    </td>
                </tr>
            </table>
        {/if}
    {/section}
{/if}