12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- /**
- * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
- */
- namespace Temando\Shipping\ViewModel\DataProvider;
- use Magento\Framework\UrlInterface;
- use Temando\Shipping\Model\LocationInterface;
- /**
- * Location URL provider
- *
- * @package Temando\Shipping\ViewModel
- * @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 LocationUrl implements EntityUrlInterface
- {
- /**
- * Url Builder
- *
- * @var UrlInterface
- */
- private $urlBuilder;
- /**
- * CarrierUrl constructor.
- * @param UrlInterface $urlBuilder
- */
- public function __construct(UrlInterface $urlBuilder)
- {
- $this->urlBuilder = $urlBuilder;
- }
- /**
- * @return string
- */
- public function getNewActionUrl(): string
- {
- return $this->urlBuilder->getUrl('temando/configuration_location/new');
- }
- /**
- * @return string
- */
- public function getListActionUrl(): string
- {
- return $this->urlBuilder->getUrl('temando/configuration_location/index');
- }
- /**
- * @param mixed[] $data Item data to pick entity identifier.
- * @return string
- */
- public function getViewActionUrl(array $data): string
- {
- return '';
- }
- /**
- * @param mixed[] $data Item data to pick entity identifier.
- * @return string
- */
- public function getEditActionUrl(array $data): string
- {
- return $this->urlBuilder->getUrl('temando/configuration_location/edit', [
- LocationInterface::LOCATION_ID => $data[LocationInterface::LOCATION_ID],
- ]);
- }
- /**
- * @param mixed[] $data Item data for the implementer to pick entity identifier.
- * @return string
- */
- public function getDeleteActionUrl(array $data): string
- {
- return $this->urlBuilder->getUrl('temando/configuration_location/delete', [
- LocationInterface::LOCATION_ID => $data[LocationInterface::LOCATION_ID]
- ]);
- }
- }
|