Added selectpicker and Menu

This commit is contained in:
Deon George
2014-02-18 14:44:56 +11:00
parent b2912e4007
commit fe73d9a7d8
5 changed files with 714 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?php foreach (URL::navbar() as $type => $details) : ?>
<?php if ($x = Menu::items($type)) : ?>
<ul class="nav pull-right">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="<?php echo $details['icon']; ?>"></i> <?php echo $details['name']; ?> <b class="caret"></b></a>
<?php echo Menu::ul($type,$x,$type == 'user' ? array('logout'=>'Logout') : NULL); ?>
</li>
</ul>
<?php endif ?>
<?php endforeach ?>