Elgg  Version 1.9
ban.php
Go to the documentation of this file.
1 <?php
12 $guid = get_input('guid');
14 
16  register_error(elgg_echo('admin:user:self:ban:no'));
18 }
19 
20 if (($user instanceof ElggUser) && ($user->canEdit())) {
21  if ($user->ban('banned')) {
22  system_message(elgg_echo('admin:user:ban:yes'));
23  } else {
24  register_error(elgg_echo('admin:user:ban:no'));
25  }
26 } else {
27  register_error(elgg_echo('admin:user:ban:no'));
28 }
29 
$user
Definition: ban.php:13
$guid
Definition: ban.php:12
register_error($error)
Display an error on next page load.
Definition: elgglib.php:605
system_message($message)
Display a system message on next page load.
Definition: elgglib.php:592
const REFERER
Definition: elgglib.php:2162
forward($location="", $reason='system')
Forward to $location.
Definition: elgglib.php:79
elgg_echo($message_key, $args=array(), $language="")
Given a message key, returns an appropriately translated full-text string.
Definition: languages.php:21
get_entity($guid)
Loads and returns an entity object from a guid.
Definition: entities.php:604
get_input($variable, $default=null, $filter_result=true)
Get some input from variables passed submitted through GET or POST.
Definition: input.php:27
elgg_get_logged_in_user_guid()
Return the current logged in user by guid.
Definition: sessions.php:42