aboutsummaryrefslogtreecommitdiff
path: root/views/default/output/url.php
blob: 7e0281a439fdf57451b68fbc950a159bef9a221d (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
53
54
55
56
<?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 ((substr_count($url, "http://") == 0) && (substr_count($url, "https://") == 0)) { 
		$url = "http://" . $url; 
	}

	if (array_key_exists('is_action', $vars) && $vars['is_action']) {
		$url = elgg_add_action_tokens_to_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>";
}