Slim::transform()   A
last analyzed

Complexity

Conditions 3
Paths 2

Size

Total Lines 10
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 4
Bugs 0 Features 0
Metric Value
cc 3
eloc 4
nc 2
nop 6
dl 0
loc 10
rs 10
c 4
b 0
f 0
1
<?php
2
3
/**
4
 * @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
5
 * @copyright Aimeos (aimeos.org), 2016-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 generating URLs using the Slim router
16
 *
17
 * @package MW
18
 * @subpackage View
19
 */
20
class Slim
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 \Slim\Router $router Slim router object
33
	 * @param array Associative list of fixed parameters that should be available for all routes
0 ignored issues
show
Bug introduced by
The type Aimeos\MW\View\Helper\Url\Associative was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
34
	 */
35
	public function __construct( \Aimeos\MW\View\Iface $view, \Slim\Router $router, array $fixed )
36
	{
37
		parent::__construct( $view );
38
39
		$this->router = $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
		$params = $this->sanitize( $params );
59
60
		if( isset( $config['absoluteUri'] ) && (bool) $config['absoluteUri'] === true ) {
61
			return $this->router->pathFor( $target, $this->fixed + $params );
62
		}
63
64
		return $this->router->relativePathFor( $target, $params + $this->fixed );
65
	}
66
}
67