From b3df59a31f5b6e9c2394e0e2f712ec1fb1097b88 Mon Sep 17 00:00:00 2001
From: gloas <gloas@afi-sa.fr>
Date: Fri, 29 Sep 2017 15:54:24 +0200
Subject: [PATCH] dev #59187 add link to support in admin front nav

---
 .../ZendAfi/View/Helper/Admin/FrontNav.php    | 36 ++++++++++++++-----
 1 file changed, 28 insertions(+), 8 deletions(-)

diff --git a/library/ZendAfi/View/Helper/Admin/FrontNav.php b/library/ZendAfi/View/Helper/Admin/FrontNav.php
index 04ef2e194d7..c478af9ae32 100644
--- a/library/ZendAfi/View/Helper/Admin/FrontNav.php
+++ b/library/ZendAfi/View/Helper/Admin/FrontNav.php
@@ -67,15 +67,26 @@ class ZendAfi_View_Helper_Admin_FrontNav extends ZendAfi_View_Helper_BaseHelper
 
   protected function _myAccount() {
     $id = Class_Users::getIdentity()->getId();
+
+    $anchors = [$this->_tag('li',
+                            $this->view->tagAnchor(['module' => 'admin',
+                                       'controller' => 'users',
+                                       'action' => 'edit',
+                                       'id' => $id],
+                                      Class_Users::getNomAff($id),
+                                      ['title' => $this->_('Accéder à la page de modification de mon compte administrateur'),
+                                       'data-popup' => 'true'])),
+                $redmine,
+                $this->_tag('li', $this->view->tagAnchor($this->view->url(['module' => 'admin',
+                                                                           'controller' => 'auth',
+                                                                           'action' => 'logout'], null, true),
+                                                         $this->_('Se déconnecter')))];
+
     return $this->_tag('div',
-                       $this->view->tagAnchor(['module' => 'admin',
-                                               'controller' => 'users',
-                                               'action' => 'edit',
-                                               'id' => $id],
-                                              $this->_('Utilisateur courant : %s', Class_Users::getNomAff($id)),
-                                              ['title' => $this->_('Accéder à la page de modification de mon compte administrateur'),
-                                               'data-popup' => 'true']),
-                       ['class' => 'admin_menu_title']);
+                       $this->_('Utilisateur courant'),
+                       ['class' => 'admin_menu_title'])
+
+      . $this->_tag('ul', implode($anchors));
   }
 
 
@@ -227,6 +238,15 @@ class ZendAfi_View_Helper_Admin_FrontNav extends ZendAfi_View_Helper_BaseHelper
                                                                       'home')),
                                      ['title' => $this->_('Accéder à l\'interface d\'administration')])];
 
+    if(Class_AdminVar::isRedmineEnabled())
+      $links [] = $this->view->tagAnchor($this->view->url(['module' => 'admin',
+                                                           'controller' => 'redmine',
+                                                           'action' => 'index'], null, true),
+                                         Class_Admin_Skin::current()->renderMenuIconOn('redmine',
+                                                                                       $this->view,
+                                                                                       ['alt' => 'redmine'])
+                                         . $this->_('Assistance (%d)', Class_WebService_Redmine_Workflow::current()->getNumberOfIssuesNotification()));
+
     if($this->_isAllowed('cms', 'index'))
       $links[] = $this->view->tagAnchor(Class_Url::absolute('/admin/cms/'),
                                         $this->_('Articles') .
-- 
GitLab