Score.php 497 B

12345678910111213141516171819202122
  1. <?php
  2. namespace Dotdigitalgroup\Email\Controller\Feefo;
  3. class Score extends \Dotdigitalgroup\Email\Controller\Response
  4. {
  5. /**
  6. * @throws \Magento\Framework\Exception\LocalizedException
  7. *
  8. * @return null
  9. */
  10. public function execute()
  11. {
  12. //authenticate
  13. if ($this->authenticate()) {
  14. if ($this->helper->getFeefoLogon()) {
  15. $this->_view->loadLayout();
  16. $this->_view->renderLayout();
  17. }
  18. }
  19. }
  20. }