11 lines
522 B
PHP
11 lines
522 B
PHP
|
<?php foreach (array('user'=>Auth::instance()->get_user()->name(),'reseller'=>'Reseller','affiliate'=>'Affiliate','admin'=>'Administrator') as $type => $ddname) : ?>
|
||
|
<?php if ($x = Menu::items($type)) : ?>
|
||
|
<ul class="nav pull-right">
|
||
|
<li class="dropdown">
|
||
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="icon-user"></i> <?php echo $ddname; ?> <b class="caret"></b></a>
|
||
|
<?php echo Menu::ul($x,$type == 'user' ? array('logout'=>'Logout') : NULL); ?>
|
||
|
</li>
|
||
|
</ul>
|
||
|
<?php endif ?>
|
||
|
<?php endforeach ?>
|