Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

542 lines
27KB

  1. <?php
  2. /**
  3. * Copyright La boîte à pain (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 common\logic\User\User\Module\UserModule;
  39. use yii\helpers\Html;
  40. use yii\widgets\ActiveForm;
  41. use common\logic\Producer\Producer\Model\Producer;
  42. use common\logic\Config\TaxRate\Model\TaxRate;
  43. use common\logic\Document\Document\Model\Document;
  44. use yii\helpers\ArrayHelper;
  45. \backend\assets\VuejsProducerUpdateAsset::register($this);
  46. $userModule = UserModule::getInstance();
  47. $userCurrent = GlobalParam::getCurrentUser();
  48. $this->setTitle('Paramètres');
  49. $this->addBreadcrumb($this->getTitle());
  50. ?>
  51. <script>
  52. var appInitValues = {
  53. isAdmin: <?= (int) $userModule->getAuthorizationChecker()->isGrantedAsAdministrator($userCurrent) ?>
  54. };
  55. </script>
  56. <div class="user-update" id="app-producer-update">
  57. <div id="nav-params">
  58. <a v-for="section in sectionsArray" v-if="!section.isAdminSection || (section.isAdminSection && isAdmin)"
  59. :class="'btn '+((currentSection == section.name) ? 'btn-primary' : 'btn-default')"
  60. @click="changeSection(section)" :href="'#'+section.name">
  61. {{ section.nameDisplay }}
  62. <span class="glyphicon glyphicon-triangle-bottom"></span>
  63. </a>
  64. </div>
  65. <div class="user-form">
  66. <?php $form = ActiveForm::begin([
  67. 'enableClientValidation' => false,
  68. ]); ?>
  69. <div>
  70. <div v-show="currentSection == 'general'" class="panel panel-default">
  71. <div class="panel-body">
  72. <h4>Accès</h4>
  73. <?= $form->field($model, 'active')
  74. ->dropDownList([
  75. 0 => 'Non',
  76. 1 => 'Oui'
  77. ], [])
  78. ->label('En ligne')
  79. ->hint('Activez cette option pour rendre votre espace visible à vos clients.'); ?>
  80. <?= $form->field($model, 'code')->hint("Saisissez ce champs si vous souhaitez protéger l'accès à votre espace par un code, sinon laissez-le vide.<br />"
  81. . "Ce code est à communiquer à vos clients pour qu'ils puissent ajouter votre espace à leurs favoris.<br />"
  82. . "<a href=\"" . Yii::$app->urlManager->createUrl(['communicate/index']) . "\">Cliquez ici</a> pour télécharger un mode d'emploi comprenant ce code à distribuer à vos clients.") ?>
  83. <h4>Général</h4>
  84. <?= $form->field($model, 'name') ?>
  85. <?= $form->field($model, 'type') ?>
  86. <?= $form->field($model, 'description')
  87. ->textarea(['rows' => 4])
  88. ->hint('Affiché sur la page d\'accueil') ?>
  89. <?= $form->field($model, 'address')
  90. ->textarea(['rows' => 4]) ?>
  91. <?= $form->field($model, 'postcode') ?>
  92. <?= $form->field($model, 'city') ?>
  93. <h4>Apparence</h4>
  94. <?= $form->field($model, 'background_color_logo') ?>
  95. <?= $form->field($model, 'logoFile')->fileInput() ?>
  96. <?php
  97. if (strlen($model->logo)) {
  98. echo '<img src="' . Yii::$app->urlManagerProducer->getHostInfo() . '/' . Yii::$app->urlManagerProducer->baseUrl . '/uploads/' . $model->logo . '" width="200px" /><br />';
  99. echo '<input type="checkbox" name="delete_logo" id="delete_logo" /> <label for="delete_logo">Supprimer le logo</label><br /><br />';
  100. }
  101. ?>
  102. <?= $form->field($model, 'photoFile')->fileInput()->hint('Format idéal : 900 x 150 px') ?>
  103. <?php
  104. if (strlen($model->photo)) {
  105. echo '<img src="' . Yii::$app->urlManagerProducer->getHostInfo() . '/' . Yii::$app->urlManagerProducer->baseUrl . '/uploads/' . $model->photo . '" width="400px" /><br />';
  106. echo '<input type="checkbox" name="delete_photo" id="delete_photo" /> <label for="delete_photo">Supprimer la photo</label><br /><br />';
  107. }
  108. ?>
  109. <?= $form->field($model, 'behavior_home_point_sale_day_list')
  110. ->dropDownList([
  111. Producer::BEHAVIOR_HOME_POINT_SALE_DAY_LIST_WEEK => 'Jours de la semaine',
  112. Producer::BEHAVIOR_HOME_POINT_SALE_DAY_LIST_INCOMING_DISTRIBUTIONS => 'Distributions à venir',
  113. ]); ?>
  114. <?= $form->field($model, 'option_point_sale_wording') ?>
  115. </div>
  116. </div>
  117. <div v-show="currentSection == 'tableau-bord'" class="panel panel-default">
  118. <div class="panel-body">
  119. <h4>Tableau de bord administration</h4>
  120. <?= $form->field($model, 'option_dashboard_number_distributions')
  121. ->dropDownList([
  122. 3 => '3',
  123. 6 => '6',
  124. 9 => '9',
  125. 12 => '12',
  126. 15 => '15',
  127. 18 => '18',
  128. 21 => '21',
  129. 24 => '24',
  130. 27 => '27',
  131. 30 => '30',
  132. ], []); ?>
  133. <?= $form->field($model, 'option_dashboard_date_start')->textInput([
  134. 'class' => 'datepicker form-control'
  135. ]); ?>
  136. <?= $form->field($model, 'option_dashboard_date_end')->textInput([
  137. 'class' => 'datepicker form-control'
  138. ]); ?>
  139. </div>
  140. </div>
  141. <div v-show="currentSection == 'prise-commande'" class="panel panel-default">
  142. <div class="panel-body">
  143. <h4>Horaires</h4>
  144. <?php
  145. $delaysArray = [
  146. 1 => '1 jour',
  147. 2 => '2 jours',
  148. 3 => '3 jours',
  149. 4 => '4 jours',
  150. 5 => '5 jours',
  151. 6 => '6 jours',
  152. 7 => '7 jours',
  153. ];
  154. $deadlinesArray = [
  155. 24 => 'Minuit',
  156. 23 => '23h',
  157. 22 => '22h',
  158. 21 => '21h',
  159. 20 => '20h',
  160. 19 => '19h',
  161. 18 => '18h',
  162. 17 => '17h',
  163. 16 => '16h',
  164. 15 => '15h',
  165. 14 => '14h',
  166. 13 => '13h',
  167. 12 => '12h',
  168. 11 => '11h',
  169. 10 => '10h',
  170. 9 => '9h',
  171. 8 => '8h',
  172. ];
  173. $daysArray = [
  174. 'monday' => 'Lundi',
  175. 'tuesday' => 'Mardi',
  176. 'wednesday' => 'Mercredi',
  177. 'thursday' => 'Jeudi',
  178. 'friday' => 'Vendredi',
  179. 'saturday' => 'Samedi',
  180. 'sunday' => 'Dimanche'
  181. ];
  182. ?>
  183. <div class="row">
  184. <div class="col-md-2">
  185. <strong>Par défaut</strong>
  186. </div>
  187. <div class="col-md-5">
  188. <?= $form->field($model, 'order_delay')
  189. ->dropDownList($delaysArray, ['prompt' => '--'])
  190. ->hint('Si <strong>1 jour</strong> est sélectionné, le client pourra commander jusqu\'à la veille de la production.<br />'
  191. . 'Si <strong>2 jours</strong> est sélectionné, le client pourra commander jusqu\'à l\'avant-veille de la production, etc.'); ?>
  192. </div>
  193. <div class="col-md-5">
  194. <?= $form->field($model, 'order_deadline')
  195. ->dropDownList($deadlinesArray, ['prompt' => '--'])
  196. ->hint('Heure limite jusqu\'à laquelle les clients peuvent commander pour satisfaire le délai de commande.<br />'
  197. . 'Par exemple, si <strong>2 jours</strong> est sélectionné dans le délai de commande, le client devra commander l\'avant-veille de la production avant l\'heure précisée ici.'); ?>
  198. </div>
  199. </div>
  200. <?php foreach ($daysArray as $day => $labelDay): ?>
  201. <div class="row">
  202. <div class="col-md-2">
  203. <strong><?= $labelDay ?></strong>
  204. </div>
  205. <div class="col-md-5">
  206. <?= $form->field($model, 'order_delay_' . $day, [
  207. 'template' => '{input}',
  208. ])->dropDownList($delaysArray, ['prompt' => '--'])->label(''); ?>
  209. </div>
  210. <div class="col-md-5">
  211. <?= $form->field($model, 'order_deadline_' . $day, [
  212. 'template' => '{input}',
  213. ])->dropDownList($deadlinesArray, ['prompt' => '--'])->label(''); ?>
  214. </div>
  215. </div>
  216. <?php endforeach; ?>
  217. <h4>Informations</h4>
  218. <?= $form->field($model, 'order_infos')
  219. ->textarea(['rows' => 6])
  220. ->hint('Affichées au client lors de sa commande') ?>
  221. <?= $form->field($model, 'option_payment_info')
  222. ->textarea(['rows' => 6])
  223. ->hint('Affichées au client à la fin de la prise de commande') ?>
  224. <h4>Tunnel de commande</h4>
  225. <?= $form->field($model, 'option_order_entry_point')
  226. ->dropDownList([
  227. Producer::ORDER_ENTRY_POINT_DATE => 'Date',
  228. Producer::ORDER_ENTRY_POINT_POINT_SALE => 'Point de vente',
  229. ], []); ?>
  230. <?= $form->field($model, 'behavior_order_select_distribution')
  231. ->dropDownList([
  232. Producer::BEHAVIOR_ORDER_SELECT_DISTRIBUTION_CALENDAR => 'Calendrier',
  233. Producer::BEHAVIOR_ORDER_SELECT_DISTRIBUTION_LIST => 'Liste',
  234. ]); ?>
  235. <?= $form->field($model, 'option_delivery')
  236. ->dropDownList([
  237. 0 => 'Non',
  238. 1 => 'Oui'
  239. ], []); ?>
  240. <?php echo $form->field($model, 'option_allow_order_guest')
  241. ->dropDownList([
  242. 0 => 'Non',
  243. 1 => 'Oui'
  244. ], []); ?>
  245. <h4>Notifications</h4>
  246. <?= $form->field($model, 'option_notify_producer_order_summary')
  247. ->dropDownList([
  248. 0 => 'Non',
  249. 1 => 'Oui',
  250. ], []); ?>
  251. <?= $form->field($model, 'option_email_confirm')
  252. ->dropDownList([
  253. 0 => 'Non',
  254. 1 => 'Oui'
  255. ], []); ?>
  256. <?= $form->field($model, 'option_email_confirm_producer')
  257. ->dropDownList([
  258. 0 => 'Non',
  259. 1 => 'Oui'
  260. ], []); ?>
  261. <h4>Exports</h4>
  262. <?= $form->field($model, 'option_csv_separator')
  263. ->dropDownList([
  264. ';' => 'Point-virgule (;)',
  265. ',' => 'Virgule (,)'
  266. ], []); ?>
  267. <?= $form->field($model, 'option_csv_export_all_products')
  268. ->dropDownList([
  269. 0 => 'Non',
  270. 1 => 'Oui'
  271. ], []); ?>
  272. <?= $form->field($model, 'option_csv_export_by_piece')
  273. ->dropDownList([
  274. 0 => 'Non',
  275. 1 => 'Oui'
  276. ], []); ?>
  277. <?= $form->field($model, 'option_display_export_grid')
  278. ->dropDownList([
  279. 0 => 'Non',
  280. 1 => 'Oui'
  281. ], []); ?>
  282. <?= $form->field($model, 'option_export_display_product_reference')
  283. ->dropDownList([
  284. 0 => 'Non',
  285. 1 => 'Oui'
  286. ], []); ?>
  287. <?= $form->field($model, 'option_export_display_column_delivery_note')
  288. ->dropDownList([
  289. 0 => 'Non',
  290. 1 => 'Oui'
  291. ], []); ?>
  292. <h4>Divers</h4>
  293. <?php
  294. $choicesWeeksDistributionsActivatedInAdvanceArray = [null => '--'];
  295. for($i = 1; $i < 13; $i++) {
  296. $choicesWeeksDistributionsActivatedInAdvanceArray[$i] = $i.' semaine'.(($i > 1) ? 's' : '');
  297. }
  298. ?>
  299. <?= $form->field($model, 'option_weeks_distributions_activated_in_advance')
  300. ->dropDownList($choicesWeeksDistributionsActivatedInAdvanceArray)
  301. ->hint("Attention, les premières semaines doivent être activées manuellement."); ?>
  302. <?= $form->field($model, 'option_order_reference_type')
  303. ->dropDownList([
  304. Producer::ORDER_REFERENCE_TYPE_NONE => '--',
  305. Producer::ORDER_REFERENCE_TYPE_YEARLY => 'Annuelle',
  306. ], []); ?>
  307. <?= $form->field($model, 'option_behavior_cancel_order')
  308. ->dropDownList([
  309. Producer::BEHAVIOR_DELETE_ORDER_DELETE => 'Suppression de la commande',
  310. Producer::BEHAVIOR_DELETE_ORDER_STATUS => 'Passage de la commande en statut "supprimé"',
  311. ], []); ?>
  312. </div>
  313. </div>
  314. <div v-show="currentSection == 'abonnements'" class="panel panel-default">
  315. <div class="panel-body">
  316. <h4>Abonnements</h4>
  317. <?= $form->field($model, 'user_manage_subscription')
  318. ->dropDownList([
  319. 0 => 'Non',
  320. 1 => 'Oui',
  321. ], []); ?>
  322. </div>
  323. </div>
  324. <div v-show="currentSection == 'credit-payment'" class="panel panel-default">
  325. <div class="panel-body">
  326. <h4>Crédit</h4>
  327. <?= $form->field($model, 'credit')
  328. ->dropDownList([
  329. 0 => 'Non',
  330. 1 => 'Oui',
  331. ], [])
  332. ->label('Activer le système de Crédit')
  333. ->hint('Le système de Crédit permet à vos clients d\'avoir un compte prépayé sur le site <em>distrib</em>.<br />'
  334. . 'Ils créditent leur compte en vous donnant la somme de leur choix et c\'est ensuite à vous de ' . Html::a('mettre à jour', ['user/index']) . ' leur Crédit en ligne.<br />'
  335. . 'Ceci fait, les clients paient leur commande directement via leur Crédit.'); ?>
  336. <?= $form->field($model, 'credit_functioning')
  337. ->dropDownList([
  338. Producer::CREDIT_FUNCTIONING_OPTIONAL => Producer::$creditFunctioningArray[Producer::CREDIT_FUNCTIONING_OPTIONAL],
  339. Producer::CREDIT_FUNCTIONING_MANDATORY => Producer::$creditFunctioningArray[Producer::CREDIT_FUNCTIONING_MANDATORY],
  340. Producer::CREDIT_FUNCTIONING_USER => Producer::$creditFunctioningArray[Producer::CREDIT_FUNCTIONING_USER],
  341. ], [])->hint(Producer::HINT_CREDIT_FUNCTIONING); ?>
  342. <?= $form->field($model, 'use_credit_checked_default')
  343. ->dropDownList([
  344. 0 => 'Non',
  345. 1 => 'Oui',
  346. ], [])->hint('Utilisation optionnelle du Crédit.'); ?>
  347. <?= $form->field($model, 'credit_limit_reminder', [
  348. 'template' => '{label}<div class="input-group">{input}<span class="input-group-addon"><span class="glyphicon glyphicon-euro"></span></span></div>{hint}',
  349. ])
  350. ->hint("Une relance est envoyé au client dès que ce seuil est dépassé."); ?>
  351. <?= $form->field($model, 'credit_limit', [
  352. 'template' => '{label}<div class="input-group">{input}<span class="input-group-addon"><span class="glyphicon glyphicon-euro"></span></span></div>{hint}',
  353. ])->hint('Limite de crédit que l\'utilisateur ne pourra pas dépasser. Laisser vide pour permettre un crédit négatif et infini.'); ?>
  354. <h4>Paiement en ligne</h4>
  355. <?= $form->field($model, 'online_payment')
  356. ->dropDownList([
  357. 0 => 'Non',
  358. 1 => 'Oui',
  359. ], []); ?>
  360. <?= $form->field($model, 'option_online_payment_minimum_amount')
  361. ->hint('Valeur par défaut si non défini : '.Producer::ONLINE_PAYMENT_MINIMUM_AMOUNT_DEFAULT.' €')
  362. ->textInput(); ?>
  363. <?= $form->field($model, 'option_stripe_mode_test')->dropDownList([
  364. 0 => 'Non',
  365. 1 => 'Oui'
  366. ], []); ?>
  367. <?= $form->field($model, 'option_online_payment_type')
  368. ->dropDownList([
  369. 'credit' => 'Alimentation du crédit',
  370. 'order' => 'Paiement à la commande',
  371. ], []); ?>
  372. <?= $form->field($model, 'option_stripe_public_key')->textInput(); ?>
  373. <?= $form->field($model, 'option_stripe_private_key')->textInput(); ?>
  374. <?= $form->field($model, 'option_stripe_endpoint_secret')->textInput(); ?>
  375. </div>
  376. </div>
  377. <div v-show="currentSection == 'infos'" class="panel panel-default">
  378. <div class="panel-body">
  379. <h4>Informations légales</h4>
  380. <?= $form->field($model, 'mentions')
  381. ->textarea(['rows' => 15])
  382. ->hint('') ?>
  383. <?= $form->field($model, 'gcs')
  384. ->textarea(['rows' => 15])
  385. ->hint('') ?>
  386. </div>
  387. </div>
  388. <div v-show="currentSection == 'logiciels-caisse'" class="panel panel-default">
  389. <div class="panel-body">
  390. <h4>Tiller</h4>
  391. <?= $form->field($model, 'tiller')
  392. ->dropDownList([
  393. 0 => 'Non',
  394. 1 => 'Oui'
  395. ], [])
  396. ->label('Synchroniser avec Tiller'); ?>
  397. <?= $form->field($model, 'tiller_provider_token'); ?>
  398. <?= $form->field($model, 'tiller_restaurant_token'); ?>
  399. </div>
  400. </div>
  401. <div v-show="currentSection == 'facturation'" class="panel panel-default">
  402. <div class="panel-body">
  403. <h4>Facturation</h4>
  404. <?= $form->field($model, 'id_tax_rate_default')
  405. ->dropDownList(ArrayHelper::map(TaxRate::find()->all(), 'id', function ($model) {
  406. return $model->name;
  407. }))
  408. ->label('TVA à appliquer par défaut'); ?>
  409. <?= $form->field($model, 'option_tax_calculation_method')
  410. ->dropDownList(Document::$taxCalculationMethodArray); ?>
  411. <?= $form->field($model, 'option_export_evoliz')->dropDownList([
  412. 0 => 'Non',
  413. 1 => 'Oui'
  414. ]); ?>
  415. <?php $hintKeywordsPrefix = "Saisissez [ANNEE] pour intégrer l'année courante"; ?>
  416. <?= $form->field($model, 'document_quotation_prefix')->hint($hintKeywordsPrefix); ?>
  417. <?= $form->field($model, 'document_quotation_first_reference'); ?>
  418. <?= $form->field($model, 'document_quotation_duration'); ?>
  419. <?= $form->field($model, 'document_invoice_prefix')->hint($hintKeywordsPrefix);; ?>
  420. <?= $form->field($model, 'document_invoice_first_reference'); ?>
  421. <?= $form->field($model, 'document_delivery_note_prefix')->hint($hintKeywordsPrefix);; ?>
  422. <?= $form->field($model, 'document_delivery_note_first_reference'); ?>
  423. <?= $form->field($model, 'option_invoice_only_based_on_delivery_notes')->dropDownList([
  424. 0 => 'Non',
  425. 1 => 'Oui'
  426. ]); ?>
  427. <?= $form->field($model, 'document_display_orders_invoice')->dropDownList([
  428. 0 => 'Non',
  429. 1 => 'Oui'
  430. ]); ?>
  431. <?= $form->field($model, 'document_display_orders_delivery_note')->dropDownList([
  432. 0 => 'Non',
  433. 1 => 'Oui'
  434. ]); ?>
  435. <?= $form->field($model, 'document_display_prices_delivery_note')->dropDownList([
  436. 0 => 'Non',
  437. 1 => 'Oui'
  438. ]); ?>
  439. <?= $form->field($model, 'document_display_product_description')->dropDownList([
  440. 0 => 'Non',
  441. 1 => 'Oui'
  442. ]); ?>
  443. <?= $form->field($model, 'option_document_price_decimals')->dropDownList([
  444. 2 => '2',
  445. 3 => '3'
  446. ]); ?>
  447. <?= $form->field($model, 'document_infos_top')
  448. ->textarea(['rows' => 8])
  449. ->hint("Affichées juste en dessous de l'adresse"); ?>
  450. <?= $form->field($model, 'document_infos_bottom')
  451. ->textarea(['rows' => 8]) ?>
  452. <?= $form->field($model, 'document_infos_quotation')
  453. ->textarea(['rows' => 8]) ?>
  454. <?= $form->field($model, 'document_infos_invoice')
  455. ->textarea(['rows' => 8]) ?>
  456. <?= $form->field($model, 'document_infos_delivery_note')
  457. ->textarea(['rows' => 8]) ?>
  458. </div>
  459. </div>
  460. <div v-show="currentSection == 'software'" class="panel panel-default">
  461. <div class="panel-body">
  462. <h4>Opendistrib</h4>
  463. <?php $urlAboutPage = Yii::$app->urlManagerFrontend->createAbsoluteUrl(['site/about']); ?>
  464. <?= $form->field($model, 'option_testimony')
  465. ->textarea(['rows' => 7])
  466. ->hint("Écrivez ici votre témoignage concernant l'utilisation du logiciel. Il sera publié sur la page <a href=\"".$urlAboutPage."\" target=\"_blanck\">À propos</a> du site.") ; ?>
  467. <?= $form->field($model, 'option_time_saved')
  468. ->dropDownList([
  469. null => '--',
  470. 0.5 => '30 minutes',
  471. 1 => '1 heure',
  472. 2 => '2 heures',
  473. 3 => '3 heures',
  474. 4 => '4 heures',
  475. 5 => '5 heures',
  476. 6 => '6 heures',
  477. 7 => '7 heures',
  478. 8 => '8 heures',
  479. ])
  480. ->hint("Sélectionnez le temps que vous estimez gagner chaque semaine en utilisant ce logiciel. Cette donnée sera utilisée sur la page <a href=\"".$urlAboutPage."\" target=\"_blanck\">À propos</a> du site.") ; ?>
  481. <?= $form->field($model, 'option_display_message_new_opendistrib_version')
  482. ->dropDownList([
  483. 1 => 'Oui',
  484. 0 => 'Non'
  485. ], []); ?>
  486. </div>
  487. </div>
  488. <div class="form-group">
  489. <?= Html::submitButton('Mettre à jour', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
  490. </div>
  491. </div>
  492. <?php ActiveForm::end(); ?>
  493. </div>
  494. </div>