123456789101112131415161718 |
- <?php
- namespace Dotdigitalgroup\Email\Controller\Report;
- class Mostviewed extends \Dotdigitalgroup\Email\Controller\Response
- {
- /**
- * @return null
- */
- public function execute()
- {
- //authenticate
- if ($this->authenticate()) {
- $this->_view->loadLayout();
- $this->_view->renderLayout();
- }
- }
- }
|