aboutsummaryrefslogtreecommitdiff
path: root/mod/blog/actions/delete.php
blob: 5b0120cefaf74e26103ec859a043c6d29ec03f6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php

/**
 * Elgg blog: delete post action
 */

// Make sure we're logged in (send us to the front page if not)
gatekeeper();

// Get input data
$guid = (int) get_input('blogpost');
		
// Make sure we actually have permission to edit
$blog = get_entity($guid);
if ($blog->getSubtype() == "blog" && $blog->canEdit()) {
	$container = get_entity($blog->container_guid);
	
	// Get owning user
	$owner = get_entity($blog->getOwner());
	// Delete it!
	$rowsaffected = $blog->delete();
	if ($rowsaffected > 0) {
	// Success message
			system_message(elgg_echo("blog:deleted"));
	} else {
			register_error(elgg_echo("blog:notdeleted"));
	}
	// Forward to the main blog page
	forward("pg/blog/" . $container->username);
}else{
	forward($_SERVER['HTTP_REFERER']);
}