src/PlaygroundGame/Controller/Frontend/GameController.php 1 location
|
@@ 557-562 (lines=6) @@
|
| 554 |
|
if ($this->getRequest()->isPost()) { |
| 555 |
|
$data = $this->getRequest()->getPost()->toArray(); |
| 556 |
|
$form->setData($data); |
| 557 |
|
if ($form->isValid()) { |
| 558 |
|
$result = $this->getGameService()->sendShareMail($data, $this->game, $this->user, $lastEntry); |
| 559 |
|
if ($result) { |
| 560 |
|
$statusMail = true; |
| 561 |
|
} |
| 562 |
|
} |
| 563 |
|
} |
| 564 |
|
|
| 565 |
|
$viewModel->setVariables(array( |
src/PlaygroundGame/Controller/Frontend/PostVoteController.php 1 location
|
@@ 727-732 (lines=6) @@
|
| 724 |
|
if ($this->getRequest()->isPost()) { |
| 725 |
|
$data = $this->getRequest()->getPost()->toArray(); |
| 726 |
|
$form->setData($data); |
| 727 |
|
if ($form->isValid()) { |
| 728 |
|
$result = $this->getGameService()->sendShareMail($data, $this->game, $this->user, $lastEntry); |
| 729 |
|
if ($result) { |
| 730 |
|
$statusMail = true; |
| 731 |
|
} |
| 732 |
|
} |
| 733 |
|
} |
| 734 |
|
|
| 735 |
|
$viewModel = $this->buildView($this->game); |