Elgg  Version 1.11
delete.php
Go to the documentation of this file.
1 <?php
11 
12 if (elgg_instanceof($comment, 'object', 'comment') && $comment->canEdit()) {
13  if ($comment->delete()) {
14  system_message(elgg_echo('generic_comment:deleted'));
15  } else {
16  register_error(elgg_echo('generic_comment:notdeleted'));
17  }
18 } else {
19  register_error(elgg_echo('generic_comment:notfound'));
20 }
21 
get_input($variable, $default=null, $filter_result=true)
Get some input from variables passed submitted through GET or POST.
Definition: input.php:27
elgg forward
Meant to mimic the php forward() function by simply redirecting the user to another page...
Definition: elgglib.js:419
$comment
Definition: delete.php:10
elgg_instanceof($entity, $type=null, $subtype=null, $class=null)
Checks if $entity is an and optionally for type and subtype.
Definition: entities.php:922
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
$comment_guid
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
get_entity($guid)
Loads and returns an entity object from a guid.
Definition: entities.php:382