| 1 |
lars |
1 |
{if $show == 'summary'}
|
|
|
2 |
<!-- =========== METHOD SUMMARY =========== -->
|
|
|
3 |
<A NAME='method_summary'><!-- --></A>
|
|
|
4 |
<H3>Method Summary</H3>
|
|
|
5 |
|
|
|
6 |
<UL>
|
|
|
7 |
{section name=methods loop=$methods}
|
|
|
8 |
{if $methods[methods].static}
|
|
|
9 |
<!-- =========== Summary =========== -->
|
|
|
10 |
<LI><CODE>static <A HREF='{$methods[methods].id}'>{$methods[methods].function_return} {$methods[methods].function_name}()</A></CODE>
|
|
|
11 |
<BR>{$methods[methods].sdesc}
|
|
|
12 |
{/if}
|
|
|
13 |
{/section}
|
|
|
14 |
{section name=methods loop=$methods}
|
|
|
15 |
{if $methods[methods].static}
|
|
|
16 |
<!-- =========== Summary =========== -->
|
|
|
17 |
<LI><CODE><A HREF='{$methods[methods].id}'>{$methods[methods].function_return} {$methods[methods].function_name}()</A></CODE>
|
|
|
18 |
<BR>{$methods[methods].sdesc}
|
|
|
19 |
{/if}
|
|
|
20 |
{/section}
|
|
|
21 |
</UL>
|
|
|
22 |
|
|
|
23 |
{else}
|
|
|
24 |
<!-- ============ METHOD DETAIL =========== -->
|
|
|
25 |
|
|
|
26 |
<A NAME='method_detail'></A>
|
|
|
27 |
<H3>Method Detail</H3>
|
|
|
28 |
|
|
|
29 |
<UL>
|
|
|
30 |
{section name=methods loop=$methods}
|
|
|
31 |
{if $methods[methods].static}
|
|
|
32 |
<A NAME='{$methods[methods].method_dest}'><!-- --></A>
|
|
|
33 |
|
|
|
34 |
<h1><A name="{$methods[methods].function_name}"></A>static {$class_name}::{$methods[methods].function_name}</h1>
|
|
|
35 |
|
|
|
36 |
<p class=method>
|
|
|
37 |
<b>static {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}(</b>
|
|
|
38 |
{if count($methods[methods].ifunction_call.params)}
|
|
|
39 |
{section name=params loop=$methods[methods].ifunction_call.params}
|
|
|
40 |
{if $smarty.section.params.iteration != 1}, {/if}
|
|
|
41 |
{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<b>{$methods[methods].ifunction_call.params[params].type}</b>
|
|
|
42 |
<i>{$methods[methods].ifunction_call.params[params].name}</i>{if $methods[methods].ifunction_call.params[params].hasdefault} = {$methods[methods].ifunction_call.params[params].default}]{/if}
|
|
|
43 |
{/section}
|
|
|
44 |
{/if}<b> );</b>
|
|
|
45 |
</p>
|
|
|
46 |
|
|
|
47 |
{if $methods[methods].descmethod}
|
|
|
48 |
<p>Overridden in child classes as:<br />
|
|
|
49 |
{section name=dm loop=$methods[methods].descmethod}
|
|
|
50 |
<dl>
|
|
|
51 |
<dt>{$methods[methods].descmethod[dm].link}</dt>
|
|
|
52 |
<dd>{$methods[methods].descmethod[dm].sdesc}</dd>
|
|
|
53 |
</dl>
|
|
|
54 |
{/section}</p>
|
|
|
55 |
{/if}
|
|
|
56 |
{if $methods[methods].method_overrides}
|
|
|
57 |
<p>Overrides {$methods[methods].method_overrides.link} ({$methods[methods].method_overrides.sdesc|default:"parent method not documented"})</p>
|
|
|
58 |
{/if}
|
|
|
59 |
{if $methods[methods].method_implements}
|
|
|
60 |
<hr class="separator" />
|
|
|
61 |
<div class="notes">Implementation of:</div>
|
|
|
62 |
{section name=imp loop=$methods[methods].method_implements}
|
|
|
63 |
<dl>
|
|
|
64 |
<dt>{$methods[methods].method_implements[imp].link}</dt>
|
|
|
65 |
{if $methods[methods].method_implements[imp].sdesc}
|
|
|
66 |
<dd>{$methods[methods].method_implements[imp].sdesc}</dd>
|
|
|
67 |
{/if}
|
|
|
68 |
</dl>
|
|
|
69 |
{/section}
|
|
|
70 |
{/if}
|
|
|
71 |
|
|
|
72 |
{include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=true}
|
|
|
73 |
<p class="top">[ <a href="#top">Top</a> ]</p>
|
|
|
74 |
<BR>
|
|
|
75 |
{/if}
|
|
|
76 |
{/section}
|
|
|
77 |
|
|
|
78 |
{section name=methods loop=$methods}
|
|
|
79 |
{if !$methods[methods].static}
|
|
|
80 |
<A NAME='{$methods[methods].method_dest}'><!-- --></A>
|
|
|
81 |
|
|
|
82 |
<h1><A name="{$methods[methods].function_name}"></A>{$class_name}::{$methods[methods].function_name}</h1>
|
|
|
83 |
|
|
|
84 |
<p class=method>
|
|
|
85 |
<b>{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}(</b>
|
|
|
86 |
{if count($methods[methods].ifunction_call.params)}
|
|
|
87 |
{section name=params loop=$methods[methods].ifunction_call.params}
|
|
|
88 |
{if $smarty.section.params.iteration != 1}, {/if}
|
|
|
89 |
{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<b>{$methods[methods].ifunction_call.params[params].type}</b>
|
|
|
90 |
<i>{$methods[methods].ifunction_call.params[params].name}</i>{if $methods[methods].ifunction_call.params[params].hasdefault} = {$methods[methods].ifunction_call.params[params].default}]{/if}
|
|
|
91 |
{/section}
|
|
|
92 |
{/if}<b> );</b>
|
|
|
93 |
</p>
|
|
|
94 |
|
|
|
95 |
{if $methods[methods].descmethod}
|
|
|
96 |
<p>Overridden in child classes as:<br />
|
|
|
97 |
{section name=dm loop=$methods[methods].descmethod}
|
|
|
98 |
<dl>
|
|
|
99 |
<dt>{$methods[methods].descmethod[dm].link}</dt>
|
|
|
100 |
<dd>{$methods[methods].descmethod[dm].sdesc}</dd>
|
|
|
101 |
</dl>
|
|
|
102 |
{/section}</p>
|
|
|
103 |
{/if}
|
|
|
104 |
{if $methods[methods].method_overrides}
|
|
|
105 |
<p>Overrides {$methods[methods].method_overrides.link} ({$methods[methods].method_overrides.sdesc|default:"parent method not documented"})</p>
|
|
|
106 |
{/if}
|
|
|
107 |
{if $methods[methods].method_implements}
|
|
|
108 |
<hr class="separator" />
|
|
|
109 |
<div class="notes">Implementation of:</div>
|
|
|
110 |
{section name=imp loop=$methods[methods].method_implements}
|
|
|
111 |
<dl>
|
|
|
112 |
<dt>{$methods[methods].method_implements[imp].link}</dt>
|
|
|
113 |
{if $methods[methods].method_implements[imp].sdesc}
|
|
|
114 |
<dd>{$methods[methods].method_implements[imp].sdesc}</dd>
|
|
|
115 |
{/if}
|
|
|
116 |
</dl>
|
|
|
117 |
{/section}
|
|
|
118 |
{/if}
|
|
|
119 |
|
|
|
120 |
{include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=true}
|
|
|
121 |
<p class="top">[ <a href="#top">Top</a> ]</p>
|
|
|
122 |
<BR>
|
|
|
123 |
{/if}
|
|
|
124 |
{/section}
|
|
|
125 |
</UL>
|
|
|
126 |
{/if}
|