|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?php
-
- namespace producer\controllers;
-
- class SiteController extends ProducerBaseController {
-
- /**
- * @inheritdoc
- */
- public function behaviors() {
- return [];
- }
-
- public function actions() {
- return [
- 'captcha' => [
- 'class' => 'yii\captcha\CaptchaAction',
- 'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null,
- ],
- ];
- }
-
- public function actionError()
- {
- $exception = Yii::$app->errorHandler->exception;
-
- if ($exception !== null) {
- if($exception->getMessage() == 'Établissement introuvable') {
- Yii::$app->getResponse()->redirect(Yii::$app->urlManagerFrontend->createAbsoluteUrl(['site/error', 'producer_not_found' => true]))->send();
- return;
- }
- else {
- return $this->render('error', ['exception' => $exception]);
- }
- }
- }
-
- /**
- *
- * Affiche la page d'accueil des producteurs comprenant une image, une
- * description, la liste des points de vente et les produits
- *
- * @return ProducerView
- */
-
- public function actionIndex() {
-
- // points de vente
- $data_provider_points_vente = new ActiveDataProvider([
- 'query' => PointVente::find()
- ->where([
- 'id_etablissement' => $this->getProducer()->id,
- ]),
- 'pagination' => [
- 'pageSize' => 50,
- ],
- 'sort' => false,
- ]);
-
- // produits
- $data_provider_produits = new ActiveDataProvider([
- 'query' => Produit::find()
- ->where('(vrac IS NULL OR vrac = 0)')
- ->andWhere([
- 'id_etablissement' => $this->getProducer()->id,
- 'actif' => true
- ])
- ->orderBy('order ASC'),
- 'pagination' => [
- 'pageSize' => 50,
- ],
- 'sort' => false,
- ]);
-
- return $this->render('index',[
- 'data_provider_points_vente' => $data_provider_points_vente,
- 'data_provider_produits' => $data_provider_produits
- ]) ;
- }
-
- /**
- *
- * Affiche et traite le formulaire de contact dédié aux producteurs
- *
- * @return ProducerView
- */
-
- public function actionContact() {
- $model = new ContactForm();
- $producer = $this->getProducer() ;
-
- if ($model->load(Yii::$app->request->post()) && $model->validate()) {
- if (is_array($producer->contact) && $model->sendEmail($producer->contact[0]->email)) {
- Yii::$app->session->setFlash('success', 'Votre message a bien été envoyé.');
- }
- else {
- Yii::$app->session->setFlash('error', 'Il y a eu une erreur lors de l\'envoi de votre message.');
- }
- return $this->refresh();
- }
- else {
- return $this->render('contact', [
- 'model' => $model,
- ]);
- }
- }
- }
-
- ?>
|