blob: 79f16bad5fb969c2595f266fab35e09e059e1fc6 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
<?php
/**
* Elgg external pages: add/edit
*
* @package ElggExPages
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd <info@elgg.com>
* @copyright Curverider Ltd 2008-2010
* @link http://elgg.org/
*/
// Make sure we're logged as admin
admin_gatekeeper();
// Get input data
$contents = get_input('expagescontent', '', false);
$type = get_input('content_type');
$previous_guid = get_input('expage_guid');
// Cache to the session
$_SESSION['expages_content'] = $contents;
$_SESSION['expagestype'] = $type;
// Make sure the content exists
if (empty($contents)) {
register_error(elgg_echo("expages:blank"));
forward("mod/expages/add.php");
// Otherwise, save the new external page
} else {
//remove the old external page
if(get_entity($previous_guid)){
delete_entity($previous_guid);
}
// Initialise a new ElggObject
$expages = new ElggObject();
// Tell the system what type of external page it is
$expages->subtype = $type;
// Set its owner to the current user
$expages->owner_guid = $_SESSION['user']->getGUID();
// For now, set its access to public
$expages->access_id = ACCESS_PUBLIC;
// Set its title and description appropriately
$expages->title = $type;
$expages->description = $contents;
// Before we can set metadata, save
if (!$expages->save()) {
register_error(elgg_echo("expages:error"));
forward("mod/expages/add.php");
}
// Success message
system_message(elgg_echo("expages:posted"));
// add to river
add_to_river('river/expages/create','create',$_SESSION['user']->guid,$expages->guid);
// Remove the cache
unset($_SESSION['expages_content']); unset($_SESSION['expagestitle']);
// Forward back to the page
forward("pg/expages/index.php?type={$type}");
}
?>
|