From 4766f36a4d74924f21ff329c4318ce4e069ffa04 Mon Sep 17 00:00:00 2001 From: brettp Date: Wed, 3 Mar 2010 17:53:05 +0000 Subject: Pulled in the interface changes. git-svn-id: http://code.elgg.org/elgg/trunk@5257 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/bookmarks/actions/add.php | 72 ++++++++++++++++++++++++++++++++++++++++ mod/bookmarks/actions/delete.php | 32 ++++++++++++++++++ 2 files changed, 104 insertions(+) create mode 100644 mod/bookmarks/actions/add.php create mode 100644 mod/bookmarks/actions/delete.php (limited to 'mod/bookmarks/actions') diff --git a/mod/bookmarks/actions/add.php b/mod/bookmarks/actions/add.php new file mode 100644 index 000000000..a074719b1 --- /dev/null +++ b/mod/bookmarks/actions/add.php @@ -0,0 +1,72 @@ + + * @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"); + } + +?> diff --git a/mod/bookmarks/actions/delete.php b/mod/bookmarks/actions/delete.php new file mode 100644 index 000000000..217197b24 --- /dev/null +++ b/mod/bookmarks/actions/delete.php @@ -0,0 +1,32 @@ + + * @copyright Curverider Ltd 2008-2010 + * @link http://elgg.org/ + */ + + $guid = get_input('bookmark_guid',0); + if ($entity = get_entity($guid)) { + + if ($entity->canEdit()) { + + if ($entity->delete()) { + + system_message(elgg_echo("bookmarks:delete:success")); + forward("pg/bookmarks/"); + + } + + } + + } + + register_error(elgg_echo("bookmarks:delete:failed")); + forward("pg/bookmarks/"); + +?> \ No newline at end of file -- cgit v1.2.3