summaryrefslogtreecommitdiff
path: root/buildscripts/PhpDocumentor/phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/imethods.tpl
blob: c0be1bf7127ec4c1845d4a9f81abaa0a367a2b48 (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
      <para>
{section name=classes loop=$imethods}
       <table>
        <title>Inherited from {$imethods[classes].parent_class}</title>
        <tgroup cols="2">
         <thead>
          <row>
           <entry>Method Name</entry>
           <entry>Summary</entry>
          </row>
         </thead>
         <tbody>
{section name=m loop=$imethods[classes].imethods}
          <row>
           <entry>{if $imethods[classes].imethods[m].constructor} Constructor{/if} {$imethods[classes].imethods[m].link}</entry>
           <entry>{$imethods[classes].imethods[m].sdesc|default:"&notdocumented;"}</entry>
          </row>
{/section}
         </tbody>
        </tgroup>
       </table>
{/section}
      </para>