blob: a32e4a4ba4847cf5c00d9f69e34d2db32ec4bea8 (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
<?php
/**
* Create or edit a page
*
* @package ElggPages
*/
$variables = elgg_get_config('pages');
$input = array();
foreach ($variables as $name => $type) {
$input[$name] = get_input($name);
if ($name == 'title') {
$input[$name] = strip_tags($input[$name]);
}
if ($type == 'tags') {
$input[$name] = string_to_tag_array($input[$name]);
}
}
// Get guids
$page_guid = (int)get_input('page_guid');
$container_guid = (int)get_input('container_guid');
$parent_guid = (int)get_input('parent_guid');
elgg_make_sticky_form('page');
if (!$input['title']) {
register_error(elgg_echo('pages:error:no_title'));
forward(REFERER);
}
if ($page_guid) {
$page = get_entity($page_guid);
if (!$page || !$page->canEdit()) {
register_error(elgg_echo('pages:error:no_save'));
forward(REFERER);
}
$new_page = false;
} else {
$page = new ElggObject();
if ($parent_guid) {
$page->subtype = 'page';
} else {
$page->subtype = 'page_top';
}
$new_page = true;
}
if (sizeof($input) > 0) {
// don't change access if not an owner/admin
$user = elgg_get_logged_in_user_entity();
$can_change_access = true;
if ($user && $page) {
$can_change_access = $user->isAdmin() || $user->getGUID() == $page->owner_guid;
}
foreach ($input as $name => $value) {
if (($name == 'access_id' || $name == 'write_access_id') && !$can_change_access) {
continue;
}
$page->$name = $value;
}
}
// need to add check to make sure user can write to container
$page->container_guid = $container_guid;
if ($parent_guid) {
$page->parent_guid = $parent_guid;
}
if ($page->save()) {
elgg_clear_sticky_form('page');
// Now save description as an annotation
$page->annotate('page', $page->description, $page->access_id);
system_message(elgg_echo('pages:saved'));
if ($new_page) {
add_to_river('river/object/page/create', 'create', elgg_get_logged_in_user_guid(), $page->guid);
}
forward($page->getURL());
} else {
register_error(elgg_echo('pages:error:notsaved'));
forward(REFERER);
}
|