620619be6f6baffb16b9b30a48a4df4cb99fe6c5
[mdref/mdref] / views / mdref.phtml
1
2 <?= $file($entry->getPath()) ?>
3
4 <?php if ($entry->hasFunctions()) : ?>
5
6 <h2 id="Functions:">Functions:</h2>
7 <ul>
8 <?php foreach($entry as $sub) : if (!$sub->isFunction()) continue; ?>
9
10 <li>
11 <h3><a href="<?= $esc($sub->getName()) ?>"><?= $esc($sub) ?></a></h3>
12 <p><?= $quick($sub->getDescription()) ?></p>
13 <p><?= $esc($sub->getTitle()) ?></p>
14 </li>
15 <?php endforeach; ?>
16
17 </ul>
18 <?php endif; ?>
19
20 <?php if ($entry->hasNsClasses()) : ?>
21
22 <h2 id="Namespaces,.Interfaces.and.Classes:">Namespaces, Interfaces and Classes:</h2>
23 <ul>
24 <?php foreach ($entry as $sub) : if (!$sub->isNsClass()) continue; ?>
25
26 <li>
27 <h3><a href="<?= $esc($sub->getName()) ?>"><?= $esc($sub) ?></a></h3>
28 <p><?= $quick($sub->getDescription()) ?></p>
29 <p><?= $esc($sub->getTitle()) ?></p>
30 </li>
31 <?php endforeach; ?>
32
33 </ul>
34 <?php endif; ?>