X-Git-Url: https://dev.renevier.net/?a=blobdiff_plain;f=application%2Flayouts%2Fscripts%2Ffooter.phtml;h=514ea243e0bf3c58194a45f907043ec580b9503e;hb=6d5823cb678935cfb8fa170fb31977986dfed34b;hp=1d73c676c6fd07f5c83e28bd4bc2b50406429d9c;hpb=aa1b3365fcf3d78fbe20166a03fc92fab3928708;p=syj.git diff --git a/application/layouts/scripts/footer.phtml b/application/layouts/scripts/footer.phtml index 1d73c67..514ea24 100644 --- a/application/layouts/scripts/footer.phtml +++ b/application/layouts/scripts/footer.phtml @@ -14,7 +14,7 @@ if ($reqParams['controller'] == 'idx' and (!isset($reqParams['url']))) { $mainpage = false; } -$content = $this->translate("main page"); +$content = $this->translate("create a route"); $link = ($mainpage) ? $this->escape($content) : $this->anchor($this->baseUrl(), $content, array('class' => 'footer-anchor')); echo '' . PHP_EOL; @@ -29,24 +29,44 @@ echo $this->footerLink(array( isset($this->redirectLinks) ? $this->redirectLinks : true); /* - * login, logout, account links + * account link */ -if ($this->loggedUser()) { +if ($mainpage or $this->loggedUser) { echo $this->footerLink(array( 'route' => 'account', 'action' => 'index', 'controller' => 'account'), - $this->translate("my account")); - if (!$mainpage) { + $this->translate("my account"), true, + 'logged-show logged-pseudo', + $this->loggedUser ? " ({$this->loggedUser->pseudo})": " (%s)" + ); +} + +/* + * list link + */ +if ($mainpage or $this->loggedUser) { + echo $this->footerLink(array( + 'route' => 'list', + 'action' => 'index', + 'controller' => 'list'), + $this->translate("my routes"), false, + 'logged-show'); +} + +/* + * login or logout links + */ +if (!$mainpage) { + if ($this->loggedUser) { + echo $this->footerLink(array( 'route' => 'logout', 'action' => 'logout', 'controller' => 'login'), $this->translate("logout"), false); - } -} else { - if (!$mainpage) { + } else { echo $this->footerLink(array( 'route' => 'login', 'action' => 'login', @@ -67,6 +87,16 @@ echo $this->footerLink(array( $this->translate("terms of use"), false); +/* + * faq + */ +echo $this->footerLink(array( + 'route' => 'faq', + 'action' => 'index', + 'controller' => 'faq'), + $this->translate("help"), + false); + echo '' . PHP_EOL; ?>