|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00002 00032 class Zend_Service_Yahoo_Image 00033 { 00039 public $Url; 00040 00046 public $Height; 00047 00053 public $Width; 00054 00055 00063 public function __construct(DOMNode $dom, $namespace) 00064 { 00065 $xpath = new DOMXPath($dom->ownerDocument); 00066 $xpath->registerNamespace('yh', $namespace); 00067 $this->Url = Zend_Uri::factory($xpath->query('./yh:Url/text()', $dom)->item(0)->data); 00068 $this->Height = (int) $xpath->query('./yh:Height/text()', $dom)->item(0)->data; 00069 $this->Width = (int) $xpath->query('./yh:Width/text()', $dom)->item(0)->data; 00070 } 00071 }