From: Chuck Hagenbuch Date: Mon, 29 Dec 2008 00:19:57 +0000 (-0500) Subject: method case - no fully uppercase names for horde 4 X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=30032bc4d0bd874901a6eab093a9516d71a7ee72;p=horde.git method case - no fully uppercase names for horde 4 --- diff --git a/framework/Service_Vimeo/doc/vimeo_example.php b/framework/Service_Vimeo/doc/vimeo_example.php index 09f869333..d23670558 100644 --- a/framework/Service_Vimeo/doc/vimeo_example.php +++ b/framework/Service_Vimeo/doc/vimeo_example.php @@ -15,7 +15,7 @@ $results = unserialize($v->channel('theedit')->clips()->run()); $results = unserialize($v->album('52803')->clips()->run()); // Get first video to embed -$embed = $v->getEmbedJSON($latest['url']); +$embed = $v->getEmbedJson($latest['url']); // Decode the data and print out the HTML $results = Horde_Serialize::unserialize($embed, SERIALIZE_JSON); diff --git a/framework/Service_Vimeo/lib/Horde/Service/Vimeo.php b/framework/Service_Vimeo/lib/Horde/Service/Vimeo.php index aa6783e09..425a43844 100644 --- a/framework/Service_Vimeo/lib/Horde/Service/Vimeo.php +++ b/framework/Service_Vimeo/lib/Horde/Service/Vimeo.php @@ -74,7 +74,7 @@ class Horde_Service_Vimeo { * * @return JSON encoded data */ - public function getEmbedJSON($options) + public function getEmbedJson($options) { $request = new Horde_Service_Vimeo_Request(); return $request->embed($options);