Created
November 2, 2012 18:13
-
-
Save eminetto/4003300 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="nav"> | |
<li class="active"><a href="/"><?php echo $this->translate('Home') ?></a></li> | |
<li> | |
<?php $user = $this->session()->offsetGet('user'); ?> | |
<?php if ($user): ?> | |
<a href="/admin/auth/logout"><?php echo $this->translate('Sair') ?></a> | |
<?php else: ?> | |
<a href="/admin/auth/index"><?php echo $this->translate('Entrar') ?></a> | |
<?php endif;?> | |
</li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment