|
- <?php
- use backend\assets\AppAsset;
- use yii\helpers\Html;
- use yii\bootstrap\Nav;
- use yii\bootstrap\NavBar;
- use yii\widgets\Breadcrumbs;
-
- /* @var $this \yii\web\View */
- /* @var $content string */
-
- AppAsset::register($this);
- ?>
- <?php $this->beginPage() ?>
- <!DOCTYPE html>
- <html lang="<?= Yii::$app->language ?>">
- <head>
- <meta charset="<?= Yii::$app->charset ?>">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <?= Html::csrfMetaTags() ?>
- <title><?= Html::encode($this->title) ?> - Réservation de pain</title>
- <?php $this->head() ?>
- </head>
- <body>
- <?php $this->beginBody() ?>
- <div class="wrap">
- <?php
- NavBar::begin([
- 'brandLabel' => '<span class="glyphicon glyphicon-home"></span>',
- 'brandUrl' => Yii::$app->homeUrl,
- 'options' => [
- 'class' => 'navbar-inverse navbar-fixed-top nav-header',
- ],
- ]);
- $menuItems = [
- ['label' => '<span class="glyphicon glyphicon-calendar"></span> Production', 'url' => ['/commande/index'], 'visible'=> !Yii::$app->user->isGuest],
- ['label' => '<span class="glyphicon glyphicon-grain"></span> Produits', 'url' => ['/produit/index'], 'visible'=> !Yii::$app->user->isGuest],
- ['label' => '<span class="glyphicon glyphicon-map-marker"></span> Points de vente', 'url' => ['/point-vente/index'], 'visible'=> !Yii::$app->user->isGuest],
- ['label' => '<span class="glyphicon glyphicon-user"></span> Utilisateurs', 'url' => ['/user/index'], 'visible'=> !Yii::$app->user->isGuest],
- ['label' => '<span class="glyphicon glyphicon-cog"></span> Paramètres', 'url' => ['/etablissement/update'], 'visible'=> !Yii::$app->user->isGuest],
-
- //['label' => 'Statistiques', 'url' => ['/stats/index'], 'visible'=> !Yii::$app->user->isGuest],
- ];
- if (Yii::$app->user->isGuest) {
- $menuItems[] = ['label' => 'Connexion', 'url' => ['/site/login']];
- } else {
- $menuItems[] = [
- 'label' => '<span class="glyphicon glyphicon-off"></span>',
- 'url' => ['/site/logout'],
- 'linkOptions' => ['data-method' => 'post']
- ];
- $menuItems[] = [
- 'label' => '<span class="retour-site">Retour sur le site</span>',
- 'url' => '../../frontend/web/',
- ];
- }
- echo Nav::widget([
- 'options' => ['class' => 'navbar-nav navbar-right'],
- 'items' => $menuItems,
- 'encodeLabels' => false
- ]);
- NavBar::end();
- ?>
-
- <div class="container">
- <?php if(!Yii::$app->user->isGuest): ?>
- <div class="nom-boulange">
- <span><?= Html::encode(Yii::$app->user->identity->getNomMagasin()) ; ?></span>
- </div>
- <?php endif; ?>
- <?= Breadcrumbs::widget([
- 'links' => isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : [],
- ]) ?>
- <?= $content ?>
- </div>
- </div>
-
- <footer class="footer">
- <div class="container">
- <p class="pull-left"></p>
- <p class="pull-right"><?= Yii::powered() ?></p>
- </div>
- </footer>
-
- <?php $this->endBody() ?>
- </body>
- </html>
- <?php $this->endPage() ?>
|