12345678910111213141516171819202122 |
- <?php
- namespace Dotdigitalgroup\Email\Controller\Feefo;
- class Score extends \Dotdigitalgroup\Email\Controller\Response
- {
- /**
- * @throws \Magento\Framework\Exception\LocalizedException
- *
- * @return null
- */
- public function execute()
- {
- //authenticate
- if ($this->authenticate()) {
- if ($this->helper->getFeefoLogon()) {
- $this->_view->loadLayout();
- $this->_view->renderLayout();
- }
- }
- }
- }
|