Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

56 lines
2.2KB

  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\ActiveForm;
  4. /* @var $this yii\web\View */
  5. /* @var $model common\models\User */
  6. $this->title = 'Paramètres';
  7. $this->params['breadcrumbs'][] = 'Paramètres';
  8. ?>
  9. <div class="user-update">
  10. <h1><?= Html::encode($this->title) ?></h1>
  11. <div class="user-form">
  12. <?php $form = ActiveForm::begin(); ?>
  13. <div class="">
  14. <?= $form->field($model, 'code_postal') ?>
  15. <?= $form->field($model, 'ville') ?>
  16. <?= $form->field($model, 'code')->hint("Ce code est à communiquer à vos client pour qu'ils puissent ajouter votre boulangerie à leur tableau de bord.<br />"
  17. . "<a href=\"".Yii::$app->urlManager->createUrl(['communiquer/index'])."\">Cliquez ici</a> pour télécharger un mode d'emploi comprenant ce code à distribuer à vos clients.") ?>
  18. <?= $form->field($model, 'heure_limite_commande')
  19. ->dropDownList([
  20. 24 => 'Minuit',
  21. 23 => '23h',
  22. 22 => '22h',
  23. 21 => '21h',
  24. 20 => '20h',
  25. 19 => '19h',
  26. 18 => '18h',
  27. ], [])
  28. ->hint('Heure limite jusqu\'à laquelle les clients peuvent commander pour le lendemain.') ; ?>
  29. <?= $form->field($model, 'photo')->fileInput() ?>
  30. <?php
  31. if (strlen($model->photo)) {
  32. if(Yii::$app->getRequest()->serverName == 'localhost')
  33. $base_url = '../../frontend/web/' ;
  34. else
  35. $base_url = 'http://www.laboiteapain.net/' ;
  36. echo '<img src="'.$base_url.'uploads/' . $model->photo . '" width="400px" /><br />';
  37. echo '<input type="checkbox" name="delete_photo" id="delete_photo" /> <label for="delete_photo">Supprimer la photo</label><br /><br />';
  38. }
  39. ?>
  40. <div class="form-group">
  41. <?= Html::submitButton('Mettre à jour', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
  42. </div>
  43. </div>
  44. <?php ActiveForm::end(); ?>
  45. </div>
  46. </div>