12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
- */
- namespace Temando\Shipping\Controller\Adminhtml\Activation;
- use Magento\Backend\App\Action;
- use Magento\Framework\App\ResponseInterface;
- use Magento\Framework\Controller\ResultFactory;
- /**
- * Temando Activation Notice
- *
- * @package Temando\Shipping\Controller
- * @author Christoph Aßmann <christoph.assmann@netresearch.de>
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
- * @link http://www.temando.com/
- */
- class Notice extends Action
- {
- const ADMIN_RESOURCE = 'Temando_Shipping::shipping';
- /**
- * @return \Magento\Framework\Controller\ResultInterface|ResponseInterface
- * @throws \Magento\Framework\Exception\NotFoundException
- */
- public function execute()
- {
- /** @var \Magento\Backend\Model\View\Result\Page $resultPage */
- $resultPage = $this->resultFactory->create(ResultFactory::TYPE_PAGE);
- return $resultPage;
- }
- }
|