Elgg  Version 1.9
delete_admin_notice.php
Go to the documentation of this file.
1 <?php
6 $guid = get_input('guid');
8 
9 if (!(elgg_instanceof($notice, 'object', 'admin_notice') && $notice->delete())) {
10  register_error(elgg_echo("admin:notices:could_not_delete"));
11 }
12 
get_input($variable, $default=null, $filter_result=true)
Get some input from variables passed submitted through GET or POST.
Definition: input.php:27
$guid
Removes an admin notice.
elgg forward
Meant to mimic the php forward() function by simply redirecting the user to another page...
Definition: elgglib.js:419
elgg_instanceof($entity, $type=null, $subtype=null, $class=null)
Checks if $entity is an ElggEntity and optionally for type and subtype.
Definition: entities.php:1886
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
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