Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Service/Flickr/Image.php
Go to the documentation of this file.
00001 <?php
00002 
00032 class Zend_Service_Flickr_Image
00033 {
00039     public $uri;
00040 
00046     public $clickUri;
00047 
00053     public $height;
00054 
00060     public $width;
00061 
00068     public function __construct(DOMElement $image)
00069     {
00070         $this->uri      = (string) $image->getAttribute('source');
00071         $this->clickUri = (string) $image->getAttribute('url');
00072         $this->height   = (int) $image->getAttribute('height');
00073         $this->width    = (int) $image->getAttribute('width');
00074     }
00075 }
00076 
 All Data Structures Namespaces Files Functions Variables Enumerations