|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
-
-
-
- use yii\helpers\Html;
- use common\models\User ;
- use common\helpers\Url ;
-
- ?>
-
- <p>Bonjour <?= Html::encode($user->name) ?>,</p>
-
- <p>Votre inscription sur <strong>distrib</strong> a bien été prise en compte.</p>
-
- <p>Voici votre identifiant de connexion : <br />
- <strong><?= Html::encode($user->email) ?></strong></p>
-
- <?php if($user->status == User::STATUS_PRODUCER): ?>
- <p>Vous pouvez dès maintenant vous connecter à votre <a href="<?= Yii::$app->urlManagerBackend->createAbsoluteUrl(['site/index']); ?>">Espace producteur</a> pour mettre
- en place votre système de réservation.</p>
- <?php else: ?>
- <?php if(!is_null($producer)): ?>
- <p>Vous pouvez maintenant <a href="<?= Yii::$app->urlManagerProducer->createAbsoluteUrl(['site/index', 'slug_producer' => $producer->slug]); ?>">passer commande</a> chez votre producteur <strong><?= Html::encode($producer->name); ?></strong>.</p>
- <?php else: ?>
- <p>Vous pouvez maintenant passer commande chez votre producteur.</p>
- <?php endif; ?>
- <?php endif; ?>
-
- <p>À bientôt.</p>
|