1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
<?php
namespace gipfl\IcingaWeb2;
use Icinga\Web\Url as WebUrl;
use ipl\Html\Attribute;
use ipl\Html\BaseHtmlElement;
use ipl\Html\ValidHtml;
class Link extends BaseHtmlElement
{
protected $tag = 'a';
/** @var Url */
protected $url;
/**
* Link constructor.
* @param $content
* @param $url
* @param null $urlParams
* @param array|null $attributes
*/
public function __construct($content, $url, $urlParams = null, array $attributes = null)
{
$this->setContent($content);
$this->setAttributes($attributes);
$this->getAttributes()->registerAttributeCallback('href', array($this, 'getHrefAttribute'));
$this->setUrl($url, $urlParams);
}
/**
* @param ValidHtml|array|string $content
* @param Url|string $url
* @param array $urlParams
* @param mixed $attributes
*
* @return static
*/
public static function create($content, $url, $urlParams = null, array $attributes = null)
{
$link = new static($content, $url, $urlParams, $attributes);
return $link;
}
/**
* @param $url
* @param $urlParams
*/
public function setUrl($url, $urlParams)
{
if ($url instanceof WebUrl) { // Hint: Url is also a WebUrl
if ($urlParams !== null) {
$url->addParams($urlParams);
}
$this->url = $url;
} else {
if ($urlParams === null) {
$this->url = Url::fromPath($url);
} else {
$this->url = Url::fromPath($url, $urlParams);
}
}
$this->url->getParams();
}
/**
* @return Attribute
*/
public function getHrefAttribute()
{
return new Attribute('href', $this->getUrl()->getAbsoluteUrl('&'));
}
/**
* @return Url
*/
public function getUrl()
{
// TODO: What if null? #?
return $this->url;
}
}
|