blob: f0a457df99335c3168ab38f1c143bb6e0a3cfd4e (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<?php
/**
* Elgg front pages: add/edit
* Here we use the title field for the lefthand side and the description for the righthand side
*
* @package ElggExPages
*/
// Make sure we're logged as admin
admin_gatekeeper();
// Get input data
$contents_left = get_input('front_left', '', false);
$contents_right = get_input('front_right', '', false);
$previous_guid = get_input('front_guid');
//remove the old front page
if(get_entity($previous_guid)){
delete_entity($previous_guid);
}
// Initialise a new ElggObject
$frontpage = new ElggObject();
// Tell the system what type of external page it is
$frontpage->subtype = "front";
// Set its owner to the current user
$frontpage->owner_guid = get_loggedin_userid();
// For now, set its access to public
$frontpage->access_id = ACCESS_PUBLIC;
// Set its title and description appropriately
$frontpage->title = $contents_left;
$frontpage->description = $contents_right;
// Before we can set metadata, save
if (!$frontpage->save()) {
register_error(elgg_echo("expages:error"));
forward("pg/expages/index.php?type=front");
}
// Success message
system_message(elgg_echo("expages:posted"));
// Forward back to the page
forward("pg/expages/index.php?type=front");
?>
|