blob: a074719b1693dae9b3804d9254f9863ab88fc789 (
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
|
<?php
/**
* Elgg bookmarks add/save action
*
* @package ElggBookmarks
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider <info@elgg.com>
* @copyright Curverider Ltd 2008-2010
* @link http://elgg.org/
*/
gatekeeper();
$title = get_input('title');
$guid = get_input('bookmark_guid',0);
$description = get_input('description');
$address = get_input('address');
$access = get_input('access');
$shares = get_input('shares',array());
$tags = get_input('tags');
$tagarray = string_to_tag_array($tags);
if ($guid == 0) {
$entity = new ElggObject;
$entity->subtype = "bookmarks";
$entity->owner_guid = $_SESSION['user']->getGUID();
$entity->container_guid = (int)get_input('container_guid', $_SESSION['user']->getGUID());
} else {
$canedit = false;
if ($entity = get_entity($guid)) {
if ($entity->canEdit()) {
$canedit = true;
}
}
if (!$canedit) {
system_message(elgg_echo('notfound'));
forward("pg/bookmarks");
}
}
$entity->title = $title;
$entity->address = $address;
$entity->description = $description;
$entity->access_id = $access;
$entity->tags = $tagarray;
if ($entity->save()) {
$entity->clearRelationships();
$entity->shares = $shares;
if (is_array($shares) && sizeof($shares) > 0) {
foreach($shares as $share) {
$share = (int) $share;
add_entity_relationship($entity->getGUID(),'share',$share);
}
}
system_message(elgg_echo('bookmarks:save:success'));
//add to river
add_to_river('river/object/bookmarks/create','create',$_SESSION['user']->guid,$entity->guid);
forward($entity->getURL());
} else {
register_error(elgg_echo('bookmarks:save:failed'));
forward("pg/bookmarks");
}
?>
|