Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

109 linhas
3.1KB

  1. <?php
  2. namespace producer\controllers;
  3. class SiteController extends ProducerBaseController {
  4. /**
  5. * @inheritdoc
  6. */
  7. public function behaviors() {
  8. return [];
  9. }
  10. public function actions() {
  11. return [
  12. 'captcha' => [
  13. 'class' => 'yii\captcha\CaptchaAction',
  14. 'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null,
  15. ],
  16. ];
  17. }
  18. public function actionError()
  19. {
  20. $exception = Yii::$app->errorHandler->exception;
  21. if ($exception !== null) {
  22. if($exception->getMessage() == 'Établissement introuvable') {
  23. Yii::$app->getResponse()->redirect(Yii::$app->urlManagerFrontend->createAbsoluteUrl(['site/error', 'producer_not_found' => true]))->send();
  24. return;
  25. }
  26. else {
  27. return $this->render('error', ['exception' => $exception]);
  28. }
  29. }
  30. }
  31. /**
  32. *
  33. * Affiche la page d'accueil des producteurs comprenant une image, une
  34. * description, la liste des points de vente et les produits
  35. *
  36. * @return ProducerView
  37. */
  38. public function actionIndex() {
  39. // points de vente
  40. $data_provider_points_vente = new ActiveDataProvider([
  41. 'query' => PointVente::find()
  42. ->where([
  43. 'id_etablissement' => $this->getProducer()->id,
  44. ]),
  45. 'pagination' => [
  46. 'pageSize' => 50,
  47. ],
  48. 'sort' => false,
  49. ]);
  50. // produits
  51. $data_provider_produits = new ActiveDataProvider([
  52. 'query' => Produit::find()
  53. ->where('(vrac IS NULL OR vrac = 0)')
  54. ->andWhere([
  55. 'id_etablissement' => $this->getProducer()->id,
  56. 'actif' => true
  57. ])
  58. ->orderBy('order ASC'),
  59. 'pagination' => [
  60. 'pageSize' => 50,
  61. ],
  62. 'sort' => false,
  63. ]);
  64. return $this->render('index',[
  65. 'data_provider_points_vente' => $data_provider_points_vente,
  66. 'data_provider_produits' => $data_provider_produits
  67. ]) ;
  68. }
  69. /**
  70. *
  71. * Affiche et traite le formulaire de contact dédié aux producteurs
  72. *
  73. * @return ProducerView
  74. */
  75. public function actionContact() {
  76. $model = new ContactForm();
  77. $producer = $this->getProducer() ;
  78. if ($model->load(Yii::$app->request->post()) && $model->validate()) {
  79. if (is_array($producer->contact) && $model->sendEmail($producer->contact[0]->email)) {
  80. Yii::$app->session->setFlash('success', 'Votre message a bien été envoyé.');
  81. }
  82. else {
  83. Yii::$app->session->setFlash('error', 'Il y a eu une erreur lors de l\'envoi de votre message.');
  84. }
  85. return $this->refresh();
  86. }
  87. else {
  88. return $this->render('contact', [
  89. 'model' => $model,
  90. ]);
  91. }
  92. }
  93. }
  94. ?>