File: _row.html.php

package info (click to toggle)
php-horde 5.2.1%2Bdebian0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 12,196 kB
  • sloc: php: 11,089; xml: 6,460; sh: 96; makefile: 33; sql: 1
file content (19 lines) | stat: -rw-r--r-- 609 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div class="horde-subnavi<?php if (!empty($selected)) echo ' horde-subnavi-active' ?>">
 <div class="horde-subnavi-icon" style="background-image:url('<?php echo $icon ?>')"></div>
 <div class="horde-subnavi-point">
<?php if (!empty($url)): ?>
  <a href="<?php echo $url ?>">
<?php endif ?>
   <?php echo $label ?>
<?php if (!empty($url)): ?>
  </a>
<?php endif ?>
 </div>
</div>
<?php if (!empty($children)): ?>
<div class="horde-subnavi-sub">
<?php foreach ($children as $child): ?>
<?php echo $this->renderPartial('row', array('locals' => $this->items[$child])) ?>
<?php endforeach ?>
</div>
<?php endif ?>