123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- /**
- * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
- */
- namespace Temando\Shipping\Controller\Adminhtml\Configuration\Packaging;
- use Magento\Framework\Controller\ResultFactory;
- use Magento\Backend\App\Action;
- /**
- * Temando Edit Packaging Action
- *
- * @package Temando\Shipping\Controller
- * @author Christoph Aßmann <christoph.assmann@netresearch.de>
- * @author Sebastian Ertner <sebastian.ertner@netresearch.de>
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
- * @link http://www.temando.com/
- */
- class Edit extends Action
- {
- const ADMIN_RESOURCE = 'Temando_Shipping::packaging';
- /**
- * Edit package
- *
- * @return \Magento\Backend\Model\View\Result\Page
- */
- public function execute()
- {
- /** @var \Magento\Backend\Model\View\Result\Page $resultPage */
- $resultPage = $this->resultFactory->create(ResultFactory::TYPE_PAGE);
- $resultPage->setActiveMenu('Temando_Shipping::packaging');
- $resultPage->getConfig()->getTitle()->prepend(__('Packaging'));
- $resultPage->getConfig()->getTitle()->prepend(__('Edit Package'));
- $resultPage->addBreadcrumb(__('Packaging'), __('Packaging'), $this->getUrl('temando/configuration_packaging'));
- $resultPage->addBreadcrumb(__('Edit Package'), __('Edit Package'));
- return $resultPage;
- }
- }
|