blob: b77ffbf00f6685794d4e7d7c3e14fff9a061f2ea (
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
45
46
47
48
49
50
51
52
|
<?php
/**
* Elgg URL display
* Displays a URL as a link
*
* @package Elgg
* @subpackage Core
* @author Curverider Ltd
* @link http://elgg.org/
*
* @uses string $vars['href'] The string to display in the <a></a> tags
* @uses string $vars['text'] The string between the <a></a> tags.
* @uses bool $vars['target'] Set the target="" attribute.
* @uses string $vars['class'] what to add in class=""
* @uses string $vars['js'] Javascript to insert in <a> tag
* @uses bool $vars['is_action'] Is this a link to an action?
*
*/
$url = trim($vars['href']);
if (!empty($url)) {
if (array_key_exists('is_action', $vars) && $vars['is_action']) {
$url = elgg_validate_action_url($url);
}
if (array_key_exists('target', $vars) && $vars['target']) {
$target = "target = \"{$vars['target']}\"";
} else {
$target = '';
}
if (array_key_exists('class', $vars) && $vars['class']) {
$class = "class = \"{$vars['class']}\"";
} else {
$class = '';
}
if (array_key_exists('js', $vars) && $vars['js']) {
$js = "{$vars['target']}";
} else {
$js = '';
}
if (array_key_exists('text', $vars) && $vars['text']) {
$text = htmlentities($vars['text'], ENT_QUOTES, 'UTF-8');
} else {
$text = htmlentities($url, ENT_QUOTES, 'UTF-8');
}
echo "<a href=\"{$url}\" $target $class $js>$text</a>";
}
|