1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* @license LGPLv3, http://opensource.org/licenses/LGPL-3.0 |
5
|
|
|
* @copyright Aimeos (aimeos.org), 2020 |
6
|
|
|
* @package MW |
7
|
|
|
* @subpackage View |
8
|
|
|
*/ |
9
|
|
|
|
10
|
|
|
|
11
|
|
|
namespace Aimeos\MW\View\Helper\Url; |
12
|
|
|
|
13
|
|
|
|
14
|
|
|
/** |
15
|
|
|
* View helper class for building URLs using the page router. |
16
|
|
|
* |
17
|
|
|
* @package MW |
18
|
|
|
* @subpackage View |
19
|
|
|
*/ |
20
|
|
|
class T3Router |
21
|
|
|
extends \Aimeos\MW\View\Helper\Url\Base |
22
|
|
|
implements \Aimeos\MW\View\Helper\Url\Iface |
23
|
|
|
{ |
24
|
|
|
private $router; |
25
|
|
|
private $fixed; |
26
|
|
|
|
27
|
|
|
|
28
|
|
|
/** |
29
|
|
|
* Initializes the URL view helper. |
30
|
|
|
* |
31
|
|
|
* @param \Aimeos\MW\View\Iface $view View instance with registered view helpers |
32
|
|
|
* @param \TYPO3\CMS\Core\Routing\RouterInterface $router TYPO3 page router |
33
|
|
|
* @param array $fixed Fixed parameters that should be added to each URL |
34
|
|
|
*/ |
35
|
|
|
public function __construct( \Aimeos\MW\View\Iface $view, \TYPO3\CMS\Core\Routing\RouterInterface $router, array $fixed ) |
36
|
|
|
{ |
37
|
|
|
parent::__construct( $view ); |
38
|
|
|
|
39
|
|
|
$this->router = clone $router; |
40
|
|
|
$this->fixed = $fixed; |
41
|
|
|
} |
42
|
|
|
|
43
|
|
|
|
44
|
|
|
/** |
45
|
|
|
* Returns the URL assembled from the given arguments. |
46
|
|
|
* |
47
|
|
|
* @param string|null $target Route or page which should be the target of the link (if any) |
48
|
|
|
* @param string|null $controller Name of the controller which should be part of the link (if any) |
49
|
|
|
* @param string|null $action Name of the action which should be part of the link (if any) |
50
|
|
|
* @param array $params Associative list of parameters that should be part of the URL |
51
|
|
|
* @param array $trailing Trailing URL parts that are not relevant to identify the resource (for pretty URLs) |
52
|
|
|
* @param array $config Additional configuration parameter per URL |
53
|
|
|
* @return string Complete URL that can be used in the template |
54
|
|
|
*/ |
55
|
|
|
public function transform( string $target = null, string $controller = null, string $action = null, |
56
|
|
|
array $params = [], array $trailing = [], array $config = [] ) : string |
57
|
|
|
{ |
58
|
|
|
if( $params['locale'] ?? null ) { |
59
|
|
|
$params['L'] = $params['locale']; |
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
return (string) $this->router->generateUri( $target, ['ai' => $params + $this->fixed], join( '/', $trailing ) ); |
63
|
|
|
} |
64
|
|
|
} |
65
|
|
|
|