本文整理汇总了PHP中Magento\Framework\UrlInterface::getRouteUrl方法的典型用法代码示例。如果您正苦于以下问题:PHP UrlInterface::getRouteUrl方法的具体用法?PHP UrlInterface::getRouteUrl怎么用?PHP UrlInterface::getRouteUrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Magento\Framework\UrlInterface
的用法示例。
在下文中一共展示了UrlInterface::getRouteUrl方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
/**
* @inheritdoc
*
* @SuppressWarnings(PHPMD.ExcessiveParameterList)
*/
public function __construct(\Magento\Framework\UrlInterface $url, \Praxigento\Core\Repo\Query\Criteria\IAdapter $critAdapter, \Praxigento\Core\Repo\Query\Criteria\IMapper $api2sqlMapper = null, \Praxigento\Core\Repo\ICrud $repo, \Magento\Framework\View\Element\UiComponent\DataProvider\Reporting $reporting, \Magento\Framework\Api\Search\SearchCriteriaBuilder $searchCritBuilder, \Magento\Framework\App\RequestInterface $request, \Magento\Framework\Api\FilterBuilder $filterBuilder, $name, array $meta = [], array $data = [])
{
/* add default Update URL */
if (!isset($data[static::UIC_CONFIG][static::UIC_UPDATE_URL])) {
$val = $url->getRouteUrl(static::UICD_UPDATE_URL);
$data[static::UIC_CONFIG][static::UIC_UPDATE_URL] = $val;
}
parent::__construct($name, 'entity_id', 'id', $reporting, $searchCritBuilder, $request, $filterBuilder, $meta, $data);
/* post construction setup */
$this->_criteriaAdapter = $critAdapter;
$this->_api2sqlMapper = $api2sqlMapper;
$this->_repo = $repo;
}
示例2: testGetRouteUrl
/**
* Note: isolation flushes the URL memory cache
* @magentoAppIsolation enabled
*/
public function testGetRouteUrl()
{
$this->assertEquals('http://localhost/index.php/', $this->_model->getRouteUrl());
$this->assertEquals('http://localhost/index.php/catalog/product/view/id/50/', $this->_model->getRouteUrl('catalog/product/view', array('id' => 50)));
$this->assertEquals('http://localhost/index.php/fancy_uri', $this->_model->getRouteUrl('core/index/index', array('_direct' => 'fancy_uri')));
}