Elgg  Version 1.9
Namespaces | Variables
add.php File Reference

Go to the source code of this file.

Namespaces

 Elgg\Core
 Activate a plugin or plugins.
 

Variables

 $friend_guid = get_input('friend')
 
 $friend = get_entity($friend_guid)
 
if(! $friend) $errors = false
 
 try
 

Variable Documentation

◆ $errors

if (! $friend) $errors = false

Definition at line 17 of file add.php.

◆ $friend

$friend = get_entity($friend_guid)

Definition at line 11 of file add.php.

◆ $friend_guid

$friend_guid = get_input('friend')

Definition at line 10 of file add.php.

◆ try

try
Initial value:
{
$errors = true;
}
} catch (Exception $e) {
register_error(elgg_echo("friends:add:failure", array($friend->name)));
$errors = true;
}
if (!$errors) {
'view' => 'river/relationship/friend/create',
'action_type' => 'friend',
'subject_guid' => elgg_get_logged_in_user_guid(),
'object_guid' => $friend_guid,
));
system_message(elgg_echo("friends:add:successful", array($friend->name)));
}
$friend
Definition: add.php:11
if(! $friend) $errors
Definition: add.php:17
$friend_guid
Definition: add.php:10
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
elgg_create_river_item(array $options=array())
Adds an item to the river.
Definition: river.php:37
elgg_get_logged_in_user_guid()
Return the current logged in user by guid.
Definition: sessions.php:42
elgg_get_logged_in_user_entity()
Return the current logged in user, or null if no user is logged in.
Definition: sessions.php:32
$e
Definition: metadata.php:12

Definition at line 20 of file add.php.