blob: de4db55ab88029f091ecd1c0feb62a8221bcce30 (
plain)
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
|
<?php
/**
* A special sidebar widget for link list.
*
* @author Jan-Hendrik Willms <tleilax+studip@gmail.com>
* @license GPL 2 or later
* @since 3.1
*/
class LinkCloudWidget extends LinksWidget
{
/**
* Constructs the widget by defining a special template.
*/
public function __construct()
{
$this->setTitle(_("Cloud"));
$this->template = 'sidebar/linkcloud-widget';
}
/**
* Adds a link to the widget
*
* @param String $label Label/content of the link
* @param String $url URL/Location of the link
* @param String $icon Icon for the link, defaults to blank.gif
* @param bool $active Pass true if the link is currently active,
* defaults to false
*/
public function &addLink($label, $url, $icon = null, $attributes = [], $index = null)
{
// TODO: Remove this some versions after 5.0
$url = html_entity_decode($url);
$content = sprintf(
'<a href="%s" class="%s">%s</a>',
htmlReady($url),
'weigh-'.((int) $icon > 0 ? (int) $icon : 1),
htmlReady($label)
);
$element = new WidgetElement($content);
$this->addElement($element, 'cloudlink-' . md5(uniqid('link', true)));
}
}
|