Elgg  Version 1.9
unban.php
Go to the documentation of this file.
1 <?php
11 
12 $guid = get_input('guid');
14 
15 if (($user instanceof ElggUser) && ($user->canEdit())) {
16  if ($user->unban()) {
17  system_message(elgg_echo('admin:user:unban:yes'));
18  } else {
19  register_error(elgg_echo('admin:user:unban:no'));
20  }
21 } else {
22  register_error(elgg_echo('admin:user:unban:no'));
23 }
24 
26 
get_input($variable, $default=null, $filter_result=true)
Get some input from variables passed submitted through GET or POST.
Definition: input.php:27
$guid
Definition: unban.php:12
elgg forward
Meant to mimic the php forward() function by simply redirecting the user to another page...
Definition: elgglib.js:419
$access_status
Definition: unban.php:9
elgg_echo($message_key, $args=array(), $language="")
Given a message key, returns an appropriately translated full-text string.
Definition: languages.php:21
const REFERER
Definition: elgglib.php:2162
$user
Definition: unban.php:13
access_get_show_hidden_status()
Return current status of showing disabled entities.
Definition: access.php:299
elgg system_message
Wrapper function for system_messages.
Definition: elgglib.js:374
access_show_hidden_entities($show_hidden)
Show or hide disabled entities.
Definition: access.php:286
elgg register_error
Wrapper function for system_messages.
Definition: elgglib.js:383
get_entity($guid)
Loads and returns an entity object from a guid.
Definition: entities.php:604