petites modifications pour l'affichage
[mtweb] / mw / app / out / default / views / footer.php
1 <ul>
2 <?php if($this->config("contact_form") && $this->action_allowed("forms/contact")) : ?>
3   <li><a href="<?php echo $this->url("forms/contact"); ?>">contact</a></li>
4 <?php endif; ?>
5 <?php if(!($user = $this->user())) : ?>
6   <li><a href="<?php echo $this->url("users/identification"); ?>">s'identifier</a></li>
7 <?php else : ?>
8   <li>Bienvenue <strong><?php echo $user["login"]; ?></strong></li>
9   <?php if($this->action_allowed("users/infos")) : ?>
10   <li><a href="<?php echo $this->url("users/infos"); ?>">compte</a></li>
11   <?php endif; ?>
12 <?php if($this->action_allowed("admin")) : ?>
13   <li><a href="<?php echo $this->url("admin"); ?>">admin</a></li>
14 <?php endif; ?>
15 <?php if($this->action_allowed("config")) : ?>
16   <li><a href="<?php echo $this->url("config"); ?>">config</a></li>
17 <?php endif; ?>
18   <li><a href="<?php echo $this->url("users/identification/logout"); ?>">deconnexion</a></li>
19 <?php endif; ?>
20 <?php if($this->out_config("mtweb_footer_link")) : ?>
21   <li><a href="http://mtweb.dj3c1t.com/">mtweb</a></li>
22 <?php endif; ?>
23 </ul>