Skip to content

Commit

Permalink
Fixed issue #11501: Profile dialog not properly styled - now merged w…
Browse files Browse the repository at this point in the history
…ith user preferences
  • Loading branch information
c-schmitz committed Jul 27, 2016
1 parent 12bced7 commit ecb21be
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions application/views/admin/super/adminmenu.php
Expand Up @@ -150,8 +150,22 @@
</li>
<?php endforeach; ?>

<li>
<a href="<?php echo $this->createUrl("/admin/user/sa/personalsettings"); ?>" role="button" ><span class="icon-user" ></span> <?php echo Yii::app()->session['user'];?> </a>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false" ><span class="icon-user" ></span> <?php echo Yii::app()->session['user'];?> <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="<?php echo $this->createUrl("/admin/user/sa/personalsettings"); ?>"><?php eT("Your account");?></a>
</li>

<li class="divider"></li>

<!-- Logout -->
<li>
<a href="<?php echo $this->createUrl("admin/authentication/sa/logout"); ?>">
<?php eT("Logout");?>
</a>
</li>
</ul>
</li>
</ul>
</div><!-- /.nav-collapse -->
Expand Down

0 comments on commit ecb21be

Please sign in to comment.