|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- <?php
-
- /**
- Copyright La boîte à pain (2018)
-
- contact@laboiteapain.net
-
- Ce logiciel est un programme informatique servant à aider les producteurs
- à distribuer leur production en circuits courts.
-
- Ce logiciel est régi par la licence CeCILL soumise au droit français et
- respectant les principes de diffusion des logiciels libres. Vous pouvez
- utiliser, modifier et/ou redistribuer ce programme sous les conditions
- de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
- sur le site "http://www.cecill.info".
-
- En contrepartie de l'accessibilité au code source et des droits de copie,
- de modification et de redistribution accordés par cette licence, il n'est
- offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
- seule une responsabilité restreinte pèse sur l'auteur du programme, le
- titulaire des droits patrimoniaux et les concédants successifs.
-
- A cet égard l'attention de l'utilisateur est attirée sur les risques
- associés au chargement, à l'utilisation, à la modification et/ou au
- développement et à la reproduction du logiciel par l'utilisateur étant
- donné sa spécificité de logiciel libre, qui peut le rendre complexe à
- manipuler et qui le réserve donc à des développeurs et des professionnels
- avertis possédant des connaissances informatiques approfondies. Les
- utilisateurs sont donc invités à charger et tester l'adéquation du
- logiciel à leurs besoins dans des conditions permettant d'assurer la
- sécurité de leurs systèmes et ou de leurs données et, plus généralement,
- à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
-
- Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
- pris connaissance de la licence CeCILL, et que vous en avez accepté les
- termes.
- */
-
- use yii\bootstrap\Nav;
- use yii\bootstrap\NavBar;
- use yii\widgets\Breadcrumbs;
- use common\widgets\Alert;
- use common\helpers\Url;
- use common\models\Producer;
- use common\models\User;
-
- \common\assets\CommonAsset::register($this);
- \producer\assets\AppAsset::register($this);
-
- $producer = $this->context->getProducer() ;
- if(!Yii::$app->user->isGuest) {
- $userProducer = UserProducer::findOne(['id_user' => User::getCurrentId(), 'id_producer' => $producer->id ]) ;
- }
-
- ?>
- <?php $this->beginPage() ?>
- <!DOCTYPE html>
- <head>
- <title><?= Html::encode($producer->name); ?> | <?= $this->getPageTitle(); ?></title>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="base-url" content="<?= Yii::$app->urlManager->baseUrl ; ?>">
- <meta name="slug-producer" content="<?= $producer->slug ; ?>">
- <?= Html::csrfMetaTags() ?>
- <link rel="icon" type="image/png" href="<?php echo Yii::$app->urlManager->getBaseUrl(); ?>/img/favicon-distrib.png" />
- <?php $this->head() ?>
- </head>
- <body class="<?= Yii::$app->controller->id.'-'.Yii::$app->controller->action->id ?>">
- <?php $this->beginBody() ?>
-
- <div id="header-bap">
- <a id="logo" href="<?= Yii::$app->urlManagerFrontend->createAbsoluteUrl(['site/index']); ?>">
- <img src="<?php echo Yii::$app->urlManager->getBaseUrl(); ?>/img/logo-distrib.png" alt="" />
- </a>
- <?php
- echo Nav::widget([
- 'encodeLabels' => false,
- 'items' => [
- [
- 'label' => '<span class="glyphicon glyphicon-menu-hamburger"></span>',
- 'options' => ['id' => 'label1'],
- 'url' => '#',
- 'items' => [
- [
- 'label' => '<span class="glyphicon glyphicon-user"></span> Inscription',
- 'url' => Yii::$app->urlManagerFrontend->createAbsoluteUrl(['site/signup']),
- 'visible' => Yii::$app->user->isGuest
- ],
- [
- 'label' => '<span class="glyphicon glyphicon-log-in"></span> Connexion',
- 'url' => Yii::$app->urlManagerFrontend->createAbsoluteUrl(['site/login','return_url' => Yii::$app->urlManager->createAbsoluteUrl(['site/index'])]),
- 'visible' => Yii::$app->user->isGuest
- ],
- ],
- 'visible' => Yii::$app->user->isGuest
- ],
-
- [
- 'label' => '<span class="glyphicon glyphicon-menu-hamburger"></span>',
- 'options' => ['id' => 'label1'],
- 'url' => '#',
- 'items' => [
- [
- 'label' => '<span class="glyphicon glyphicon-user"></span> Profil',
- 'url' => Yii::$app->urlManagerFrontend->createAbsoluteUrl(['user/update']),
- ],
- [
- 'label' => '<span class="glyphicon glyphicon-off"></span> Déconnexion<br /><small>'.(!Yii::$app->user->isGuest ? Html::encode(Yii::$app->user->identity->name .' '.strtoupper(substr(Yii::$app->user->identity->lastname, 0, 1))) : '').'.</small>',
- 'url' => Yii::$app->urlManagerFrontend->createAbsoluteUrl(['site/logout']),
- ]
- ],
- 'visible' => !Yii::$app->user->isGuest
- ],
- ],
- 'options' => ['id' =>'nav-bap'],
- ]);
- ?>
- </div>
-
- <header id="header">
- <div class="container">
- <h1><?= Html::encode($producer->name); ?></h1>
- <h2><?= Html::encode($producer->type) ?> à <?= Html::encode($producer->city); ?> (<?= Html::encode($producer->postcode); ?>)</h2>
- <div id="infos">
- <span data-toggle="tooltip" data-placement="bottom" title="Heure limite de commande">
- <span class="glyphicon glyphicon-time"></span> Commande avant
- <strong><?php echo Html::encode($producer->order_deadline) ?> h</strong></span>,
- <span data-toggle="tooltip" data-placement="bottom" title="Exemple : commande le lundi pour le <?php if($producer->order_delay == 1): ?>mardi<?php elseif($producer->order_delay == 2): ?>mercredi<?php elseif($producer->order_delay == 3): ?>jeudi<?php elseif($producer->order_delay == 4): ?>vendredi<?php elseif($producer->order_delay == 5): ?>samedi<?php elseif($producer->order_delay == 6): ?>dimanche<?php elseif($producer->order_delay == 7): ?>lundi d'après<?php endif; ?>"><strong><?= Html::encode($producer->order_delay) ?> jour<?php if($producer->order_delay > 1): ?>s<?php endif; ?></strong> à l'avance</span>
- <?php if(!Yii::$app->user->isGuest): ?>
- <span class="favorite">
- <?php if($userProducer && $userProducer->bookmark): ?>
- <span class="glyphicon glyphicon-star"></span> <a href="<?= Yii::$app->urlManagerProducer->createUrl(['site/bookmarks','action' => 'delete']); ?>" data-toggle="tooltip" data-placement="bottom" title="Supprimer de mes favoris">Favoris</a>
- <?php else: ?>
- <span class="glyphicon glyphicon glyphicon-star-empty"></span> <a href="<?= Yii::$app->urlManagerProducer->createUrl(['site/bookmarks','action' => 'add']); ?>" data-toggle="tooltip" data-placement="bottom" title="Ajouter à mes favoris">Favoris</a>
- <?php endif; ?>
- </span>
- <?php endif; ?>
- <div class="clr"></div>
- </div>
- </div>
- </header>
-
- <div id="main">
- <div class="container">
- <nav id="main-nav">
- <?php
-
- $credit = '' ;
- if(isset($userProducer) && $userProducer) {
- $labelType = $userProducer->credit > 0 ? 'success' : 'danger' ;
- $credit = ' <span class="label label-'.$labelType.'">'.number_format($userProducer->credit, 2).' €</span>' ;
- }
-
- $countSubcriptions = Subscription::find()
- ->where([
- 'subscription.id_user' => User::getCurrentId(),
- 'subscription.id_producer' => Producer::getId(),
- ])->count() ;
- $labelSubscription = $countSubcriptions > 0 ? 'success' : 'default' ;
-
- $countOrders = Order::find()
- ->joinWith(['distribution'])
- ->where([
- 'id_user' => User::getCurrentId(),
- 'distribution.id_producer' => Producer::getId()
- ])
- ->params([':date_today' => date('Y-m-d')])
- ->andWhere('distribution.date >= :date_today')
- ->count();
- $labelOrders = $countOrders > 0 ? 'success' : 'default' ;
-
-
- echo Nav::widget([
- 'encodeLabels' => false,
- 'options' => ['class' =>'nav nav-pills'],
- 'items' => [
- [
- 'label' => '<span class="glyphicon glyphicon-th-large"></span> Accueil',
- 'url' => Yii::$app->urlManager->createUrl(['site/index']),
- 'active' => $this->getControllerAction() == 'site/index',
- ],
- [
- 'label' => '<span class="glyphicon glyphicon-plus"></span> Commander',
- 'url' => Yii::$app->urlManager->createUrl(['order/order']),
- 'visible' => !Yii::$app->user->isGuest,
- 'active' => $this->getControllerAction() == 'order/order',
- ],
- [
- 'label' => '<span class="glyphicon glyphicon-plus"></span> Commander',
- 'url' => Yii::$app->urlManagerFrontend->createAbsoluteUrl(['site/producer','id' => $this->context->getProducer()->id,'return_url' => Yii::$app->urlManagerProducer->createAbsoluteUrl(['order/order','slug_producer' => $this->context->getProducer()->slug])]),
- 'visible' => Yii::$app->user->isGuest,
- 'active' => $this->getControllerAction() == 'order/order',
- ],
- [
- 'label' => '<span class="glyphicon glyphicon-folder-open"></span> Mes commandes <span class="label label-'.$labelOrders.'">'.$countOrders.'</span>',
- 'url' => Yii::$app->urlManager->createUrl(['order/history']),
- 'visible' => !Yii::$app->user->isGuest,
- 'active' => $this->getControllerAction() == 'order/history',
- ],
- [
- 'label' => '<span class="glyphicon glyphicon-repeat"></span> Abonnements <span class="label label-'.$labelSubscription.'">'.$countSubcriptions.'</span>',
- 'url' => Yii::$app->urlManager->createUrl(['subscription/index']),
- 'visible' => !Yii::$app->user->isGuest && $producer->user_manage_subscription,
- 'active' => $this->getControllerAction() == 'subscription/index',
- ],
- [
- 'label' => '<span class="glyphicon glyphicon-euro"></span> Crédit'.$credit,
- 'url' => Yii::$app->urlManager->createUrl(['credit/history']),
- 'visible' => !Yii::$app->user->isGuest && $producer->credit,
- 'active' => $this->getControllerAction() == 'credit/history',
- ],
- [
- 'label' => '<span class="glyphicon glyphicon-envelope"></span> Contact',
- 'url' => Yii::$app->urlManager->createUrl(['site/contact']),
- 'active' => $this->getControllerAction() == 'site/contact',
- ],
- [
- 'label' => '<span class="glyphicon glyphicon-cog"></span> Administration',
- 'url' => Yii::$app->urlManagerBackend->createAbsoluteUrl(['site/index']),
- 'visible' => isset(Yii::$app->user->identity) && Yii::$app->user->identity->isProducer(),
- 'options' => ['id' => 'btn-administration']
- ],
- ],
- ]);
- ?>
- </nav>
-
- <?php if(strlen($this->getTitle())): ?>
- <h2 id="page-title">
- <?= $this->getTitle(); ?>
- <?php
- if(count($this->buttons)): ?>
- <span id="buttons">
- <?php foreach($this->buttons as $button) {
- echo '<a href="'.Yii::$app->urlManagerProducer->createUrl($button['url']).'" class="'.$button['class'].'">'.$button['label'].'</a>' ;
- }
- ?>
- </span>
- <?php endif; ?>
- </h2>
- <?php endif; ?>
-
- <section id="content">
- <?php if (Yii::$app->session->hasFlash('error')): ?>
- <div class="alert alert-danger" role="alert">
- <?= Yii::$app->session->getFlash('error') ?>
- </div>
- <?php endif; ?>
- <?php if (Yii::$app->session->hasFlash('success')): ?>
- <div class="alert alert-success" role="alert">
- <?= Yii::$app->session->getFlash('success') ?>
- </div>
- <?php endif; ?>
-
- <?= $content ?>
- </section>
-
- <?php if(strlen($producer->mentions) || strlen($producer->gcs)): ?>
- <section id="footer-producer">
- <?= Html::encode($producer->name) ?> :
- <?php if(strlen($producer->mentions)): ?>
- <a href="<?php echo Yii::$app->urlManager->createUrl(['site/mentions']) ; ?>">Mentions légales</a>
- <?php endif; ?>
- <?php if(strlen($producer->mentions) && strlen($producer->gcs)): ?>
- •
- <?php endif; ?>
- <?php if(strlen($producer->gcs)): ?>
- <a href="<?php echo Yii::$app->urlManager->createUrl(['site/gcs']) ; ?>">Conditions générales de vente</a>
- <?php endif; ?>
- </section>
- <?php endif; ?>
- </div>
- </div>
-
- <footer id="footer">
- <div class="container">
- <div class="overflow"></div>
- <div class="content">
- <a href="<?php echo Yii::$app->urlManagerFrontend->createAbsoluteUrl(['site/index']) ; ?>">distrib</a> •
- <a href="<?php echo Yii::$app->urlManagerFrontend->createAbsoluteUrl(['site/mentions']) ; ?>">Mentions légales</a> •
- <a href="<?php echo Yii::$app->urlManagerFrontend->createAbsoluteUrl(['site/cgv']) ; ?>">CGS</a> •
- <a id="code-source" href="https://framagit.org/guillaume-bourgeois/distrib">Code source <img src="<?php echo Yii::$app->urlManager->getBaseUrl(); ?>/img/logo-framagit.png" alt="Hébergé par Framasoft" /> <img src="<?php echo Yii::$app->urlManager->getBaseUrl(); ?>/img/logo-gitlab.png" alt="Propulsé par Gitlab" /></a>
- </div>
- </div>
- </footer>
-
- <?php $this->endBody() ?>
- </body>
- </html>
- <?php $this->endPage() ?>
|