Review.php 429 B

1234567891011121314151617181920
  1. <?php
  2. namespace Dotdigitalgroup\Email\Controller\Email;
  3. class Review extends \Dotdigitalgroup\Email\Controller\Response
  4. {
  5. /**
  6. * Review page to display the user items with specific email.
  7. *
  8. * @return null
  9. */
  10. public function execute()
  11. {
  12. //authenticate
  13. if ($this->authenticate()) {
  14. $this->_view->loadLayout();
  15. $this->_view->renderLayout();
  16. }
  17. }
  18. }