|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00002 00028 require_once 'Zend/Service/Yahoo/Result.php'; 00029 00030 00038 class Zend_Service_Yahoo_ImageResult extends Zend_Service_Yahoo_Result 00039 { 00045 public $Summary; 00046 00052 public $RefererUrl; 00053 00059 public $FileSize; 00060 00066 public $FileFormat; 00067 00073 public $Height; 00074 00080 public $Width; 00081 00087 public $Thumbnail; 00088 00094 protected $_namespace = 'urn:yahoo:srchmi'; 00095 00096 00103 public function __construct(DOMElement $result) 00104 { 00105 $this->_fields = array('Summary', 'RefererUrl', 'FileSize', 'FileFormat', 'Height', 'Width', 'Thumbnail'); 00106 00107 parent::__construct($result); 00108 00109 $this->_setThumbnail(); 00110 } 00111 }