blob: 172d38af128c6b35ec9f716e320693cdec83af9c (
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
|
<?php
/**
* Elgg Action URL display
* This is identical to the output/url view except that it also adds action gatekeeper tokens, making
* it suitable for calling actions.
*
* @package Elgg
* @subpackage Core
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd
* @copyright Curverider Ltd 2008-2009
* @link http://elgg.org/
*
* @uses $vars['value'] The URL to display
*
*/
$val = trim($vars['value']);
if (!empty($val)) {
// Generate token
$ts = time();
$token = generate_action_token($ts);
$sep = "?";
if (strpos($val, '?')>0) $sep = "&";
$val = "$val{$sep}__elgg_token=$token&__elgg_ts=$ts";
echo elgg_view('output/url', array('value' => $val));
}
?>
|