Elgg  Version 2.3
edit.php
Go to the documentation of this file.
1 <?php
9 $collection_id = get_input('collection_id');
10 $friends = get_input('friend');
11 
12 // check it exists and we can edit
14  system_message(elgg_echo('friends:collection:edit_failed'));
15 }
16 
18  system_message(elgg_echo('friends:collections:edited'));
19 } else {
20  system_message(elgg_echo('friends:collection:edit_failed'));
21 }
22 
$collection_id
Definition: edit.php:9
elgg_echo($message_key, $args=array(), $language="")
Given a message key, returns an appropriately translated full-text string.
Definition: languages.php:21
elgg forward
Meant to mimic the php forward() function by simply redirecting the user to another page...
Definition: elgglib.js:425
update_access_collection($collection_id, $members)
Updates the membership in an access collection.
Definition: access.php:328
get_input($variable, $default=null, $filter_result=true)
Get some input from variables passed submitted through GET or POST.
Definition: input.php:27
const REFERER
Definition: elgglib.php:2123
elgg system_message
Wrapper function for system_messages.
Definition: elgglib.js:390
can_edit_access_collection($collection_id, $user_guid=null)
Can the user change this access collection?
Definition: access.php:285
$friends
Definition: edit.php:10