|
1 <?php |
|
2 |
|
3 /** |
|
4 * Zend Framework |
|
5 * |
|
6 * LICENSE |
|
7 * |
|
8 * This source file is subject to the new BSD license that is bundled |
|
9 * with this package in the file LICENSE.txt. |
|
10 * It is also available through the world-wide-web at this URL: |
|
11 * http://framework.zend.com/license/new-bsd |
|
12 * If you did not receive a copy of the license and are unable to |
|
13 * obtain it through the world-wide-web, please send an email |
|
14 * to license@zend.com so we can send you a copy immediately. |
|
15 * |
|
16 * @category Zend |
|
17 * @package Zend_Service |
|
18 * @subpackage Amazon |
|
19 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
|
20 * @license http://framework.zend.com/license/new-bsd New BSD License |
|
21 * @version $Id: Image.php 20096 2010-01-06 02:05:09Z bkarwin $ |
|
22 */ |
|
23 |
|
24 |
|
25 /** |
|
26 * @category Zend |
|
27 * @package Zend_Service |
|
28 * @subpackage Amazon |
|
29 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
|
30 * @license http://framework.zend.com/license/new-bsd New BSD License |
|
31 */ |
|
32 class Zend_Service_Amazon_Image |
|
33 { |
|
34 /** |
|
35 * Image URL |
|
36 * |
|
37 * @var Zend_Uri |
|
38 */ |
|
39 public $Url; |
|
40 |
|
41 /** |
|
42 * Image height in pixels |
|
43 * |
|
44 * @var int |
|
45 */ |
|
46 public $Height; |
|
47 |
|
48 /** |
|
49 * Image width in pixels |
|
50 * |
|
51 * @var int |
|
52 */ |
|
53 public $Width; |
|
54 |
|
55 /** |
|
56 * Assigns values to properties relevant to Image |
|
57 * |
|
58 * @param DOMElement $dom |
|
59 * @return void |
|
60 */ |
|
61 public function __construct(DOMElement $dom) |
|
62 { |
|
63 $xpath = new DOMXPath($dom->ownerDocument); |
|
64 $xpath->registerNamespace('az', 'http://webservices.amazon.com/AWSECommerceService/2005-10-05'); |
|
65 $this->Url = Zend_Uri::factory($xpath->query('./az:URL/text()', $dom)->item(0)->data); |
|
66 $this->Height = (int) $xpath->query('./az:Height/text()', $dom)->item(0)->data; |
|
67 $this->Width = (int) $xpath->query('./az:Width/text()', $dom)->item(0)->data; |
|
68 } |
|
69 } |