blob: 36a7191c2806384e5508234a95f3eba44e625466 (
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
|
<?php
/**
* Elgg openid_server: autologout form
*
* @package ElggOpenID
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Kevin Jardine <kevin@radagast.biz>
* @copyright Curverider Ltd 2008-2009
* @link http://elgg.org/
*/
require_once(dirname(dirname(__FILE__)).'/openid_server_include.php');
require_once ('lib/common.php');
require_once ('lib/session.php');
$iframe_template = <<<END
<iframe
width="%s"
height="%s"
src="%s"
>
</iframe>');
END;
$store = getOpenIDServerStore();
$openid_url = getLoggedinUser();
$sites = $store->getAutoLogoutSites();
// TODO: get this to work with posts
$iframes = '';
foreach ($sites as $site) {
$iframes .= sprintf($iframe_template,$site->width,$site->height,sprintf($site->auto_logout,$openid_url));
}
$body = elgg_view("openid_server/forms/autologout",
array(
'iframes' => $iframes,
));
$CONFIG->events['logout'] = array();
logout();
header("Content-type:text/html");
print $body;
?>
|