|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331 |
- <?php
-
- /**
- * Copyright La boîte à pain (2018)
- *
- * contact@opendistrib.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 common\logic\Order\Order\Model\Order;
- use common\logic\User\UserProducer\Model\UserProducer;
- use yii\bootstrap\Nav;
- use common\helpers\GlobalParam;
- use yii\helpers\Html;
-
- \common\assets\CommonAsset::register($this);
- \producer\assets\AppAsset::register($this);
-
- $userCurrent = GlobalParam::getCurrentUser();
- $producer = $this->context->getProducerCurrent();
- if (!Yii::$app->user->isGuest) {
- $userProducer = UserProducer::findOne(['id_user' => GlobalParam::getCurrentUserId(), 'id_producer' => $producer->id]);
- }
-
- ?>
- <?php $this->beginPage() ?>
- <!DOCTYPE html>
- <html lang="fr-FR">
- <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">
- <?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-chevron-left"></span> Retour à l\'accueil',
- 'url' => \Yii::$app->urlManagerFrontend->createAbsoluteUrl(['site/index']),
- 'visible' => \Yii::$app->user->isGuest
- ],
- [
- '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-chevron-left"></span> Retour à l\'accueil',
- 'url' => \Yii::$app->urlManagerFrontend->createAbsoluteUrl(['site/index']),
- ],
- [
- '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>
-
- <div class="container">
- <div id="left" class="col-md-3">
- <div class="fixed">
- <?php if (strlen($producer->logo)): ?>
- <div id="logo"<?php if (!is_null($producer->background_color_logo) && strlen($producer->background_color_logo)): ?> style="background-color:<?= Html::encode($producer->background_color_logo); ?>"<?php endif; ?>>
- <a href="<?= \Yii::$app->urlManager->createUrl(['site/index']) ?>">
- <img class="img-logo"
- src="<?= \Yii::$app->urlManager->baseUrl; ?>/uploads/<?= $producer->logo; ?>"
- alt="Logo <?= Html::encode($producer->name) ?>"/>
- </a>
- </div>
- <?php endif; ?>
- <h1><?= Html::encode($producer->name); ?></h1>
- <h2><?= Html::encode($producer->type) ?> à <?= Html::encode($producer->city); ?>
- (<?= Html::encode($producer->postcode); ?>)</h2>
-
- <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 = 0;
- if($userCurrent) {
- $countSubcriptions = $this->getSubscriptionManager()->countSubscriptionsByUser(
- $userCurrent,
- GlobalParam::getCurrentProducer()
- );
- }
-
- $labelSubscription = $countSubcriptions > 0 ? 'success' : 'default';
-
- $countOrders = Order::find()
- ->joinWith(['distribution'])
- ->where([
- 'id_user' => GlobalParam::getCurrentUserId(),
- 'distribution.id_producer' => GlobalParam::getCurrentProducerId()
- ])
- ->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'],
- 'items' => [
- [
- 'label' => '<span class="glyphicon glyphicon-th-large"></span> Accueil',
- 'url' => $this->getUrlManagerProducer()->createUrl(['site/index']),
- 'active' => $this->getControllerAction() == 'site/index',
- ],
- [
- 'label' => '<span class="glyphicon glyphicon-plus"></span> Commander',
- 'url' => $this->getUrlManagerProducer()->createUrl(['order/order']),
- 'visible' => $producer->option_allow_order_guest || !Yii::$app->user->isGuest,
- 'active' => $this->getControllerAction() == 'order/order',
- ],
- [
- 'label' => '<span class="glyphicon glyphicon-plus"></span> Commander',
- 'url' => $this->getUrlManagerFrontend()->createAbsoluteUrl(['site/producer', 'id' => $this->context->getProducerCurrent()->id, 'return_url' => \Yii::$app->urlManagerProducer->createAbsoluteUrl(['order/order', 'slug_producer' => $this->context->getProducerCurrent()->slug])]),
- 'visible' => !$producer->option_allow_order_guest && \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' => $this->getUrlManagerProducer()->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' => $this->getUrlManagerProducer()->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' => $this->getUrlManagerProducer()->createUrl(['credit/history']),
- 'visible' => !Yii::$app->user->isGuest && $producer->credit,
- 'active' => $this->getControllerAction() == 'credit/history',
- ],
- [
- 'label' => '<span class="glyphicon glyphicon-envelope"></span> Contact',
- 'url' => $this->getUrlManagerProducer()->createUrl(['site/contact']),
- 'active' => $this->getControllerAction() == 'site/contact',
- ],
- [
- 'label' => '<span class="glyphicon glyphicon-cog"></span> Administration',
- 'url' => $this->getUrlManagerBackend()->createAbsoluteUrl(['site/index']),
- 'visible' => isset(Yii::$app->user->identity) && $this->getUserManager()->isProducer(\Yii::$app->user->identity),
- 'options' => ['id' => 'btn-administration']
- ],
- ],
- ]);
- ?>
- </nav>
- </div>
- </div>
-
- <div id="main" class="col-md-9">
- <?php if (strlen($producer->photo)): ?>
- <div id="img-big">
- <img class="img-photo" src="<?= \Yii::$app->urlManager->baseUrl; ?>/uploads/<?= $producer->photo; ?>"
- alt="Photo <?= Html::encode($producer->name) ?>"/>
- </div>
- <?php endif; ?>
- <div id="infos-producer">
- <?php if(!$this->getProducerManager()->hasSpecificDelays($producer) && $producer->order_deadline && $producer->order_delay): ?>
- <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 endif; ?>
-
- <?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>
-
- <?php if (strlen($this->getTitle())): ?>
- <h2 id="page-title">
- <?= $this->getTitle(); ?>
- <?php
- if ($this->buttons && 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" class="container">
- <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://forge.laclic.fr/Laclic/Opendistrib">Code source</a>
- </div>
- </footer>
- <script type="text/javascript" src="https://cdn.polyfill.io/v3/polyfill.min.js?features=Intl.~locale.fr"></script>
- <?php $this->endBody() ?>
- </body>
- </html>
- <?php $this->endPage() ?>
|