Skip to content

Instantly share code, notes, and snippets.

@eminetto
Created November 2, 2012 18:13
Show Gist options
  • Save eminetto/4003300 to your computer and use it in GitHub Desktop.
Save eminetto/4003300 to your computer and use it in GitHub Desktop.
<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