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