|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00002 00032 class Zend_Service_Amazon_ListmaniaList 00033 { 00037 public $ListId; 00038 00042 public $ListName; 00043 00050 public function __construct(DOMElement $dom) 00051 { 00052 $xpath = new DOMXPath($dom->ownerDocument); 00053 $xpath->registerNamespace('az', 'http://webservices.amazon.com/AWSECommerceService/2005-10-05'); 00054 foreach (array('ListId', 'ListName') as $el) { 00055 $this->$el = (string) $xpath->query("./az:$el/text()", $dom)->item(0)->data; 00056 } 00057 } 00058 }