Jump to content
  • 0

Link Hover for Flux CP


Question

Posted

Hi,

how to script the link hover for fluxcp wherein the menu bar shows different menu if account is already login.

Let's say.

Menu 1: (Account not logout)

- Registration : downloads : vote and stuffs

Menu 2:

- Registration becomes Database : downloads : vote and stuffs

2 answers to this question

Recommended Posts

  • 0
Posted
	<?php if ($session->isLoggedIn()): ?>
		<a href="<?php echo $this->url('account', 'login') ?>">Register / Login</a>&nbsp;:&nbsp;
	<?php else: ?>
		<a href="<?php echo $this->url('items', 'index') ?>">Database</a>&nbsp;:&nbsp;
	<?php endif;?>
		<a href="<?php echo $this->url('downloads', 'index') ?>">Downloads</a>&nbsp;:&nbsp;
		<a href="<?php echo $this->url('vote4points', 'link') ?>">Vote and Stuffs</a>

 

  • Upvote 1
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...