Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

8 лет назад
6 лет назад
2 лет назад
1 год назад
6 лет назад
8 лет назад
8 лет назад
10 месяцев назад
8 лет назад
1 год назад
8 лет назад
6 лет назад
8 лет назад
8 лет назад
1 год назад
6 лет назад
1 год назад
6 лет назад
1 год назад
8 лет назад
1 год назад
1 год назад
1 год назад
1 год назад
1 год назад
1 год назад
1 год назад
1 год назад
1 год назад
1 год назад
1 год назад
1 год назад
1 год назад
1 год назад
1 год назад
10 месяцев назад
1 год назад
9 месяцев назад
1 год назад
8 лет назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. <?php
  2. /**
  3. * Copyright distrib (2018)
  4. *
  5. * contact@opendistrib.net
  6. *
  7. * Ce logiciel est un programme informatique servant à aider les producteurs
  8. * à distribuer leur production en circuits courts.
  9. *
  10. * Ce logiciel est régi par la licence CeCILL soumise au droit français et
  11. * respectant les principes de diffusion des logiciels libres. Vous pouvez
  12. * utiliser, modifier et/ou redistribuer ce programme sous les conditions
  13. * de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  14. * sur le site "http://www.cecill.info".
  15. *
  16. * En contrepartie de l'accessibilité au code source et des droits de copie,
  17. * de modification et de redistribution accordés par cette licence, il n'est
  18. * offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  19. * seule une responsabilité restreinte pèse sur l'auteur du programme, le
  20. * titulaire des droits patrimoniaux et les concédants successifs.
  21. *
  22. * A cet égard l'attention de l'utilisateur est attirée sur les risques
  23. * associés au chargement, à l'utilisation, à la modification et/ou au
  24. * développement et à la reproduction du logiciel par l'utilisateur étant
  25. * donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  26. * manipuler et qui le réserve donc à des développeurs et des professionnels
  27. * avertis possédant des connaissances informatiques approfondies. Les
  28. * utilisateurs sont donc invités à charger et tester l'adéquation du
  29. * logiciel à leurs besoins dans des conditions permettant d'assurer la
  30. * sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  31. * à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  32. *
  33. * Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  34. * pris connaissance de la licence CeCILL, et que vous en avez accepté les
  35. * termes.
  36. */
  37. use common\helpers\GlobalParam;
  38. use domain\Setting\SettingModule;
  39. use domain\User\User\UserModule;
  40. use yii\bootstrap\Nav;
  41. use yii\helpers\Html;
  42. \common\assets\CommonAsset::register($this);
  43. \frontend\assets\AppAsset::register($this);
  44. $userModule = UserModule::getInstance();
  45. $userCurrent = GlobalParam::getCurrentUser();
  46. $isUserCurrentGrantedAsProducer = $userModule->getAuthorizationChecker()->isGrantedAsProducer($userCurrent);
  47. $isHome = (Yii::$app->controller->id == 'site' && \Yii::$app->controller->action->id == 'index');
  48. $settingModule = SettingModule::getInstance();
  49. $adminSettingBag = $settingModule->getAdminSettingBag();
  50. ?>
  51. <?php $this->beginPage() ?>
  52. <!DOCTYPE html>
  53. <html lang="fr">
  54. <head>
  55. <title><?php if ($isHome): ?>Opendistrib | <?= Html::encode($this->title) ?><?php else: ?><?= Html::encode($this->page_title) ?> | Opendistrib<?php endif; ?></title>
  56. <meta charset="utf-8">
  57. <meta name="viewport" content="width=device-width, initial-scale=1">
  58. <meta name="baseurl" content="<?= Yii::$app->urlManagerFrontend->baseUrl; ?>">
  59. <meta name="baseurl-absolute"
  60. content="<?= Yii::$app->urlManagerFrontend->getHostInfo() . Yii::$app->urlManagerBackend->baseUrl; ?>">
  61. <?= Html::csrfMetaTags() ?>
  62. <link rel="icon" type="image/png" href="<?= $this->getUrlManager()->getBaseUrl(); ?>/img/favicon-distrib.png">
  63. <!--[if IE]><link rel="shortcut icon" type="image/x-icon" href="<?= \Yii::$app->urlManager->getBaseUrl(); ?>/img/favicon.ico"><![endif]-->
  64. <?php $this->head() ?>
  65. <!--[if lt IE 9]>
  66. <script src="<?= $this->getUrlManager()->getBaseUrl(); ?>/js/html5shiv.min.js"></script>
  67. <link href="<?= $this->getUrlManager()->getBaseUrl(); ?>/css/ie.css" rel="stylesheet">
  68. <![endif]-->
  69. <!--[if IE 7]>
  70. <link href="<?= $this->getUrlManager()->getBaseUrl(); ?>/css/ie7.css" rel="stylesheet">
  71. <![endif]-->
  72. <?= $this->render('@common/views/matomo.php') ?>
  73. </head>
  74. <body class="<?php if ($isHome): echo 'home'; endif; ?><?php if (!Yii::$app->user->isGuest): ?> connected<?php endif; ?>">
  75. <?php $this->beginBody() ?>
  76. <?= $this->render('@common/views/nav_user_top', [
  77. 'context' => 'frontend'
  78. ]); ?>
  79. <header id="header">
  80. <nav class="navbar navbar-default">
  81. <div id="the-header" class="container">
  82. <div class="navbar-header">
  83. <a id="link-home" class="" href="<?= $this->getUrlManager()->createUrl('site/index'); ?>">
  84. Opendistrib
  85. <!--<img src="<?= $this->getUrlManager()->baseUrl ?>/img/souke.png" alt="Souke" />-->
  86. <!--<span style="position: relative;top: 22px;left: 5px;font-family: 'capsuularegular'">-alpha.fr</span>-->
  87. </a>
  88. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#w0-collapse"><span
  89. class="sr-only">Toggle navigation</span>
  90. <span class="icon-bar"></span>
  91. <span class="icon-bar"></span>
  92. <span class="icon-bar"></span>
  93. </button>
  94. </div>
  95. <div id="w0-collapse" class="collapse navbar-collapse">
  96. <?php
  97. echo Nav::widget([
  98. 'encodeLabels' => false,
  99. 'options' => ['class' => 'nav nav-pills navbar-nav navbar-right'],
  100. 'items' => [
  101. [
  102. 'label' => '<span class="glyphicon glyphicon-home"></span> Accueil',
  103. 'url' => $this->getUrlManager()->createUrl(['site/index']),
  104. 'active' => $this->getControllerAction() == 'site/index',
  105. 'options' => ['id' => 'li-home']
  106. ],
  107. [
  108. 'label' => '<span class="glyphicon glyphicon-grain"></span> Producteurs',
  109. 'url' => $this->getUrlManager()->createUrl(['site/producers']),
  110. 'active' => $this->getControllerAction() == 'site/producers',
  111. 'options' => ['id' => 'li-producteurs']
  112. ],
  113. [
  114. 'label' => '<span class="glyphicon glyphicon-info-sign"></span> À propos',
  115. 'url' => $this->getUrlManager()->createUrl(['site/about']),
  116. 'active' => $this->getControllerAction() == 'site/about',
  117. 'options' => ['id' => 'li-about']
  118. ],
  119. [
  120. 'label' => '<span class="glyphicon glyphicon-envelope"></span> Contact',
  121. 'url' => $this->getUrlManager()->createUrl(['site/contact']),
  122. 'active' => $this->getControllerAction() == 'site/contact',
  123. 'options' => ['id' => 'li-contact']
  124. ],
  125. ]
  126. ]);
  127. ?>
  128. </div>
  129. </div>
  130. </nav>
  131. </header>
  132. <div id="main">
  133. <section id="header-title">
  134. <div class="container">
  135. <h1>
  136. <?php if ($isHome): ?>
  137. <span class="glyphicon glyphicon-tasks"></span>
  138. Opendistrib, un outil pour organiser des ventes en circuit court
  139. <?php else: ?>
  140. <span class="glyphicon glyphicon-<?= $this->getIcon(); ?>"></span>
  141. <?= $this->getTitle(); ?>
  142. <?php endif; ?>
  143. </h1>
  144. </div>
  145. </section>
  146. <section class="container" id="content">
  147. <?php if (Yii::$app->session->hasFlash('error')): ?>
  148. <div class="alert alert-danger" role="alert">
  149. <?= \Yii::$app->session->getFlash('error') ?>
  150. </div>
  151. <?php endif; ?>
  152. <?php if (Yii::$app->session->hasFlash('success')): ?>
  153. <div class="alert alert-success" role="alert">
  154. <?= \Yii::$app->session->getFlash('success') ?>
  155. </div>
  156. <?php endif; ?>
  157. <?= $content ?>
  158. </section>
  159. </div>
  160. <footer id="footer">
  161. <div class="container">
  162. <a href="<?php echo $this->getUrlManager()->createUrl('site/service'); ?>">Fonctionnalités, services & tarifs</a> <span class="bull">&bull;</span>
  163. <a href="<?php echo $this->getUrlManager()->createUrl('site/opinion'); ?>">Avis & suggestions</a> <span class="bull">&bull;</span>
  164. <?php if($adminSettingBag->get('forumFlarumUrl')): ?>
  165. <!--<a href="<?php echo $adminSettingBag->get('forumFlarumUrl'); ?>">Forum</a> <span class="bull">&bull;</span>-->
  166. <?php endif; ?>
  167. <a href="<?php echo $this->getUrlManager()->createUrl('site/mentions'); ?>">Mentions légales</a> <span class="bull">&bull;</span>
  168. <a href="<?php echo $this->getUrlManager()->createUrl('site/cgv'); ?>">Conditions générales de service</a>
  169. <!--<a href="<?php echo $this->getUrlManager()->createUrl('site/source-code'); ?>">Code source</a>-->
  170. </div>
  171. </footer>
  172. <?php $this->endBody() ?>
  173. </body>
  174. </html>
  175. <?php $this->endPage() ?>