1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
- */
- namespace Temando\Shipping\Controller\Adminhtml\Configuration\Location;
- use Magento\Framework\Controller\ResultFactory;
- use Magento\Backend\App\Action;
- /**
- * Temando Add Location Action
- *
- * @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 NewAction extends Action
- {
- const ADMIN_RESOURCE = 'Temando_Shipping::locations';
- /**
- * Create new Location
- *
- * @return \Magento\Framework\Controller\ResultInterface
- */
- public function execute()
- {
- /** @var \Magento\Backend\Model\View\Result\Page $resultPage */
- $resultPage = $this->resultFactory->create(ResultFactory::TYPE_PAGE);
- $resultPage->setActiveMenu('Temando_Shipping::locations');
- $resultPage->getConfig()->getTitle()->prepend(__('Locations'));
- $resultPage->getConfig()->getTitle()->prepend(__('Add Location'));
- $resultPage->addBreadcrumb(__('Locations'), __('Locations'), $this->getUrl('temando/configuration_location'));
- $resultPage->addBreadcrumb(__('Add Location'), __('Add Location'));
- return $resultPage;
- }
- }
|