summaryrefslogtreecommitdiff
path: root/buildscripts/apigen/pradosoft/@elementlist.latte
diff options
context:
space:
mode:
authorCiro Mattia Gonano <ciromattia@gmail.com>2013-09-11 15:56:48 +0200
committerCiro Mattia Gonano <ciromattia@gmail.com>2013-09-11 15:57:07 +0200
commit3069eaf35e833ffe4a1c1c7829dd7e168ae27420 (patch)
treed0c2e4d934cc34ba7d4232f759923b5a257dcb21 /buildscripts/apigen/pradosoft/@elementlist.latte
parentb833247ce597ec26159b46c8dfbea7f1e265950b (diff)
Merge up to r3319
Diffstat (limited to 'buildscripts/apigen/pradosoft/@elementlist.latte')
-rw-r--r--buildscripts/apigen/pradosoft/@elementlist.latte46
1 files changed, 46 insertions, 0 deletions
diff --git a/buildscripts/apigen/pradosoft/@elementlist.latte b/buildscripts/apigen/pradosoft/@elementlist.latte
new file mode 100644
index 00000000..4ffdd5b6
--- /dev/null
+++ b/buildscripts/apigen/pradosoft/@elementlist.latte
@@ -0,0 +1,46 @@
+{*
+ApiGen 2.8.0 - API documentation generator for PHP 5.3+
+
+Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com)
+Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich)
+Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville)
+
+For the full copyright and license information, please view
+the file LICENSE.md that was distributed with this source code.
+*}
+{define #elements}
+<tr n:foreach="$elements as $element">
+ <td class="name"><a href="{$element|elementUrl}" n:class="$element->deprecated ? deprecated, !$element->valid ? invalid">{if $namespace}{$element->shortName}{else}{$element->name}{/if}</a></td>
+ <td>{!$element|shortDescription}</td>
+</tr>
+{/define}
+
+<table class="summary" id="classes" n:if="$classes">
+<caption>Classes summary</caption>
+{include #elements, elements => $classes}
+</table>
+
+<table class="summary" id="interfaces" n:if="$interfaces">
+<caption>Interfaces summary</caption>
+{include #elements, elements => $interfaces}
+</table>
+
+<table class="summary" id="traits" n:if="$traits">
+<caption>Traits summary</caption>
+{include #elements, elements => $traits}
+</table>
+
+<table class="summary" id="exceptions" n:if="$exceptions">
+<caption>Exceptions summary</caption>
+{include #elements, elements => $exceptions}
+</table>
+
+<table class="summary" id="constants" n:if="$constants">
+<caption>Constants summary</caption>
+{include #elements, elements => $constants}
+</table>
+
+<table class="summary" id="functions" n:if="$functions">
+<caption>Functions summary</caption>
+{include #elements, elements => $functions}
+</table>