1234567891011121314151617181920212223 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Newsletter\Controller\Adminhtml\Template;
- use Magento\Framework\App\Action\HttpPostActionInterface as HttpPostActionInterface;
- class Drop extends \Magento\Newsletter\Controller\Adminhtml\Template implements HttpPostActionInterface
- {
- /**
- * Drop Newsletter Template
- *
- * @return void
- */
- public function execute()
- {
- $this->_view->loadLayout('newsletter_template_preview_popup');
- $this->_view->renderLayout();
- }
- }
|