aboutsummaryrefslogtreecommitdiff
path: root/actions/user/spotlight.php
blob: f20d6bdd069fffe8213c7e4923cc8622d04740a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
/**
 * Close or open spotlight.
 *
 * @package Elgg
 * @subpackage Core
 */

gatekeeper();

$closed = get_input('closed','true');
if ($closed != 'true') {
	$closed = false;
} else {
	$closed = true;
}

get_loggedin_user()->spotlightclosed = $closed;
// exit as this action is called through Ajax
exit;