From 2746ac553b20cb5933d3aefc29645624e46be499 Mon Sep 17 00:00:00 2001 From: fredtempez Date: Fri, 10 Dec 2021 13:46:00 +0100 Subject: [PATCH] ordre de sboutons de la barre : fichiers ; theme ; modules ; langue ; config ; users ; user account ; update ; disconnect --- core/core.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/core.php b/core/core.php index 1d95047b..0a8d1ce0 100644 --- a/core/core.php +++ b/core/core.php @@ -2006,13 +2006,14 @@ class common { $rightItems .= '
  • ' . template::ico('folder') . '
  • '; } if($this->getUser('group') >= self::GROUP_ADMIN) { + $rightItems .= '
  • ' . template::ico('brush') . '
  • '; + $rightItems .= '
  • ' . template::ico('puzzle') . '
  • '; if ($this->getData(['config', 'i18n', 'enable']) === true) { $rightItems .= '
  • ' . template::ico('flag') . '
  • '; } - $rightItems .= '
  • ' . template::ico('brush') . '
  • '; - $rightItems .= '
  • ' . template::ico('users') . '
  • '; - $rightItems .= '
  • ' . template::ico('puzzle') . '
  • '; $rightItems .= '
  • ' . template::ico('cog-alt') . '
  • '; + $rightItems .= '
  • ' . template::ico('users') . '
  • '; + $rightItems .= '
  • ' . template::ico('user', 'right') . '' . $this->getUser('firstname') . ' ' . $this->getUser('lastname') . '
  • '; // Mise à jour automatique $today = mktime(0, 0, 0); // Une mise à jour est disponible + recherche auto activée + 1 jour de délais @@ -2029,7 +2030,6 @@ class common { $rightItems .= '
  • ' . template::ico('update colorRed') . '
  • '; } } - $rightItems .= '
  • ' . template::ico('user', 'right') . '' . $this->getUser('firstname') . ' ' . $this->getUser('lastname') . '
  • '; $rightItems .= '
  • ' . template::ico('logout') . '
  • '; // Barre de membre echo '
      ' . $leftItems . '
      ' . $rightItems . '
    ';