fix weak property types
[mdref/mdref] / views / sidebar-rec.phtml
1 <?php if ($sub->hasNsClasses()) : ?>
2 <?= $indent ?><ul>
3 <?php foreach ($sub as $subentry) : ?>
4 <?php
5 array_push($indents, $indent);
6 $indent .= "\t";
7 ?>
8 <?php if ($subentry->isNsClass()) : ?>
9 <?=$indent?><li>&rdsh; <a href="<?= $up.$esc($subentry->getName()) ?>"><?= $esc($subentry) ?></a><?php
10 $tmp = $sub;
11 $sub = $subentry;
12 include __FILE__;
13 $sub = $tmp;
14 ?><?= $indent ?></li>
15 <?php endif; ?>
16 <?php $indent = array_pop($indents); ?>
17 <?php endforeach; ?>
18 <?= $indent ?></ul>
19 <?php endif; ?>