Elgg  Version 1.11
delete.php
Go to the documentation of this file.
1 <?php
9 $collection_id = (int) get_input('collection');
10 
11 // check the ACL exists and we can edit
13  register_error(elgg_echo("friends:collectiondeletefailed"));
15 }
16 
18  system_message(elgg_echo("friends:collectiondeleted"));
19 } else {
20  register_error(elgg_echo("friends:collectiondeletefailed"));
21 }
22 
get_input($variable, $default=null, $filter_result=true)
Get some input from variables passed submitted through GET or POST.
Definition: input.php:27
delete_access_collection($collection_id)
Deletes a specified access collection and its membership.
Definition: access.php:343
elgg forward
Meant to mimic the php forward() function by simply redirecting the user to another page...
Definition: elgglib.js:419
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:1995
$collection_id
Definition: delete.php:9
elgg system_message
Wrapper function for system_messages.
Definition: elgglib.js:374
elgg register_error
Wrapper function for system_messages.
Definition: elgglib.js:383
can_edit_access_collection($collection_id, $user_guid=null)
Can the user change this access collection?
Definition: access.php:287