web/lib/Zend/Service/Yahoo/Image.php
changeset 64 162c1de6545a
parent 19 1c2f13fd785c
child 68 ecaf28ffe26e
equal deleted inserted replaced
63:5b37998e522e 64:162c1de6545a
       
     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 Yahoo
       
    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 Yahoo
       
    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_Yahoo_Image
       
    33 {
       
    34     /**
       
    35      * Image URL
       
    36      *
       
    37      * @var string
       
    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     /**
       
    57      * Initializes the image
       
    58      *
       
    59      * @param  DOMNode $dom
       
    60      * @param  string  $namespace
       
    61      * @return void
       
    62      */
       
    63     public function __construct(DOMNode $dom, $namespace)
       
    64     {
       
    65         $xpath = new DOMXPath($dom->ownerDocument);
       
    66         $xpath->registerNamespace('yh', $namespace);
       
    67         $this->Url = Zend_Uri::factory($xpath->query('./yh:Url/text()', $dom)->item(0)->data);
       
    68         $this->Height = (int) $xpath->query('./yh:Height/text()', $dom)->item(0)->data;
       
    69         $this->Width = (int) $xpath->query('./yh:Width/text()', $dom)->item(0)->data;
       
    70     }
       
    71 }