summaryrefslogtreecommitdiff
path: root/modules/gallery/helpers
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2010-01-30 23:36:41 -0800
committerBharat Mediratta <bharat@menalto.com>2010-01-30 23:36:41 -0800
commita79d20a36135d50f77a7f11046b1d7ee392d46c7 (patch)
treee64fd4d80ac85116c883f67524106191936404db /modules/gallery/helpers
parentd29028c4ea9002ac036a89a4478fb4640c86fedb (diff)
Use Item_Model::as_restful_array() to simplify tests.
Diffstat (limited to 'modules/gallery/helpers')
-rw-r--r--modules/gallery/helpers/item_rest.php13
1 files changed, 1 insertions, 12 deletions
diff --git a/modules/gallery/helpers/item_rest.php b/modules/gallery/helpers/item_rest.php
index f5056bc1..c0fc422a 100644
--- a/modules/gallery/helpers/item_rest.php
+++ b/modules/gallery/helpers/item_rest.php
@@ -75,20 +75,9 @@ class item_rest_Core {
$members[] = rest::url("item", $child);
}
- // Convert item ids to rest URLs for consistency
- $entity = $item->as_array();
- if ($tmp = $item->parent()) {
- $entity["parent"] = rest::url("item", $tmp);
- }
- unset($entity["parent_id"]);
- if ($tmp = $item->album_cover()) {
- $entity["album_cover"] = rest::url("item", $tmp);
- }
- unset($entity["album_cover_id"]);
-
return array(
"url" => $request->url,
- "entity" => $entity,
+ "entity" => $item->as_restful_array(),
"members" => $members,
"relationships" => rest::relationships("item", $item));
}