From eae41b182d3948262708e05ca0bf0692717718a5 Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Wed, 27 Jan 2010 21:46:00 -0800 Subject: [PATCH] Updated to reflect the fact that "resource" is now "entity" in responses. --- client/Gallery3.php | 10 +++++----- client/example.php | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/client/Gallery3.php b/client/Gallery3.php index 7fe63ff0..629a114d 100644 --- a/client/Gallery3.php +++ b/client/Gallery3.php @@ -27,7 +27,7 @@ class Gallery3 { var $data; var $file; - protected $original_resource; + protected $original_entity; /** * Connect to a remote Gallery3 instance @@ -77,7 +77,7 @@ class Gallery3 { * @chainable */ public function set($key, $value) { - $this->data->resource->$key = $value; + $this->data->entity->$key = $value; return $this; } @@ -100,7 +100,7 @@ class Gallery3 { */ public function create($url, $token) { $response = Gallery3_Helper::request( - "post", $url, $token, $this->data->resource, $this->file); + "post", $url, $token, $this->data->entity, $this->file); $this->url = $response->url; $this->token = $token; return $this->load(); @@ -115,7 +115,7 @@ class Gallery3 { public function save() { $response = Gallery3_Helper::request( "put", $this->url, $this->token, - array_diff($this->original_resource, (array)$this->data->resource)); + array_diff($this->original_entity, (array)$this->data->entity)); return $this->load(); } @@ -140,7 +140,7 @@ class Gallery3 { public function load() { $response = Gallery3_Helper::request("get", $this->url, $this->token); $this->data = $response; - $this->original_resource = (array)$response->resource; + $this->original_entity = (array)$response->entity; return $this; } } diff --git a/client/example.php b/client/example.php index db8c8712..51da5cb0 100644 --- a/client/example.php +++ b/client/example.php @@ -26,14 +26,14 @@ $album = Gallery3::factory() ->set("name", "Sample Album") ->set("title", "This is my Sample Album") ->create($root->url, $auth); -alert("Created album: {$album->url} {$album->data->resource->title}"); +alert("Created album: {$album->url} {$album->data->entity->title}"); alert("Modify the album"); $album ->set("title", "This is the new title") ->save(); -alert("New title: {$album->data->resource->title}"); +alert("New title: {$album->data->entity->title}"); $photo = Gallery3::factory()