|
Moodle
2.2.1
http://www.collinsharper.com
|
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