|
- <?php
-
- use yii\helpers\Html;
- use yii\widgets\ActiveForm;
- use common\helpers\Url ;
-
- /* @var $this yii\web\View */
- /* @var $model common\models\User */
-
- $this->title = 'Paramètres';
- $this->params['breadcrumbs'][] = 'Paramètres';
- ?>
- <div class="user-update">
- <h1><?= Html::encode($this->title) ?></h1>
- <div class="user-form">
- <?php $form = ActiveForm::begin(); ?>
- <div class="">
- <?= $form->field($model, 'actif')
- ->dropDownList([
- 0 => 'Non',
- 1 => 'Oui'
- ], [])
- ->label('Activer le producteur')
- ->hint('Activez cette option pour rendre votre établissement visible à vos clients.') ; ?>
- <?= $form->field($model, 'nom') ?>
- <?= $form->field($model, 'type') ?>
- <?= $form->field($model, 'description')
- ->textarea(['rows' => 6])
- ->hint('Affiché sur la page d\'accueil') ?>
- <?= $form->field($model, 'code_postal') ?>
- <?= $form->field($model, 'ville') ?>
-
- <?= $form->field($model, 'code')->hint("Saisissez ce champs si vous souhaitez protéger l'accès à votre boutique par un code, sinon laissez-le vide.<br />"
- . "Ce code est à communiquer à vos client pour qu'ils puissent ajouter votre établissement à leur tableau de bord.<br />"
- . "<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.") ?>
-
- <?= $form->field($model, 'delai_commande')
- ->dropDownList([
- 1 => '1 jour',
- 2 => '2 jours',
- 3 => '3 jours',
- 4 => '4 jours',
- 5 => '5 jours',
- 6 => '6 jours',
- 7 => '7 jours',
- ], [])
- ->hint('Si <strong>1 jour</strong> est sélectionné, le client pourra commander jusqu\'à la veille de la production.<br />'
- . 'Si <strong>2 jours</strong> est sélectionné, le client pourra commander jusqu\'à l\'avant-veille de la production, etc.') ; ?>
- <?= $form->field($model, 'heure_limite_commande')
- ->dropDownList([
- 24 => 'Minuit',
- 23 => '23h',
- 22 => '22h',
- 21 => '21h',
- 20 => '20h',
- 19 => '19h',
- 18 => '18h',
- 17 => '17h',
- 16 => '16h',
- 15 => '15h',
- 14 => '14h',
- 13 => '13h',
- 12 => '12h',
- 11 => '11h',
- 10 => '10h',
- 9 => '9h',
- 8 => '8h',
- ], [])
- ->hint('Heure limite jusqu\'à laquelle les clients peuvent commander pour satisfaire le délai de commande.<br />'
- . '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.') ; ?>
-
-
- <?= $form->field($model, 'credit_pain')
- ->dropDownList([
- 0 => 'Non',
- 1 => 'Oui',
- ], [])
- ->label('Activer le système de Crédit Pain')
- ->hint('Le système de Crédit Pain permet à vos clients d\'avoir un compte prépayé sur le site <em>La boîte à pain</em>.<br />'
- . '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 compte Crédit Pain en ligne.<br />'
- . 'Ceci fait, les clients paient leur commande directement via leur compte Crédit Pain.') ; ?>
-
- <?= $form->field($model, 'photo')->fileInput() ?>
- <?php
- if (strlen($model->photo)) {
- $base_url = Yii::$app->urlManagerProducer->baseUrl ;
- echo '<img src="'.$base_url.'/uploads/' . $model->photo . '" width="400px" /><br />';
- echo '<input type="checkbox" name="delete_photo" id="delete_photo" /> <label for="delete_photo">Supprimer la photo</label><br /><br />';
- }
- ?>
-
- <?= $form->field($model, 'infos_commande')
- ->textarea(['rows' => 6])
- ->hint('Affichées au client lors de sa commande')?>
-
- <div class="form-group">
- <?= Html::submitButton('Mettre à jour', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
- </div>
- </div>
- <?php ActiveForm::end(); ?>
- </div>
- </div>
-
-
|