ソースを参照

Merge branch 'develop'

master
Guillaume Bourgeois 1年前
コミット
9a48b3c6c2
1個のファイルの変更3行の追加3行の削除
  1. +3
    -3
      common/views/nav_user_top.php

+ 3
- 3
common/views/nav_user_top.php ファイルの表示

@@ -83,18 +83,18 @@ if ($userManager->isCurrentProducer()) {
$itemsUserArray = [
[
'label' => '<span class="glyphicon glyphicon-chevron-left"></span> Retour à l\'accueil',
'url' => $this->getUrlManagerFrontend()->createUrl(['site/index']),
'url' => $this->getUrlManagerFrontend()->createAbsoluteUrl(['site/index']),
]
];
}

$itemsUserArray[] = [
'label' => '<span class="glyphicon glyphicon-user"></span> Mon profil',
'url' => $this->getUrlManagerFrontend()->createUrl(['user/update']),
'url' => $this->getUrlManagerFrontend()->createAbsoluteUrl(['user/update']),
];
$itemsUserArray[] = [
'label' => '<span class="glyphicon glyphicon-off"></span> Déconnexion',
'url' => $this->getUrlManagerFrontend()->createUrl(['site/logout']),
'url' => $this->getUrlManagerFrontend()->createAbsoluteUrl(['site/logout']),
];

$itemUser = [

読み込み中…
キャンセル
保存