[ZF-10089] Zend_Log
[zend/radio.git] / library / Zend / Gdata / Geo / Extension / GeoRssWhere.php
blobd8827dc3194f5eaac11c1280ab611ad6eae64245
1 <?php
3 /**
4 * Zend Framework
6 * LICENSE
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.
16 * @category Zend
17 * @package Zend_Gdata
18 * @subpackage Geo
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$
24 /**
25 * @see Zend_Gdata_Extension
27 require_once 'Zend/Gdata/Extension.php';
29 /**
30 * @see Zend_Gdata_Geo
32 require_once 'Zend/Gdata/Geo.php';
34 /**
35 * @see Zend_Gdata_Geo_Extension_GmlPoint
37 require_once 'Zend/Gdata/Geo/Extension/GmlPoint.php';
40 /**
41 * Represents the georss:where element used by the Gdata Geo extensions.
43 * @category Zend
44 * @package Zend_Gdata
45 * @subpackage Geo
46 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
47 * @license http://framework.zend.com/license/new-bsd New BSD License
49 class Zend_Gdata_Geo_Extension_GeoRssWhere extends Zend_Gdata_Extension
52 protected $_rootNamespace = 'georss';
53 protected $_rootElement = 'where';
55 /**
56 * The point location for this geo element
58 * @var Zend_Gdata_Geo_Extension_GmlPoint
60 protected $_point = null;
62 /**
63 * Create a new instance.
65 * @param Zend_Gdata_Geo_Extension_GmlPoint $point (optional) Point to which
66 * object should be initialized.
68 public function __construct($point = null)
70 $this->registerAllNamespaces(Zend_Gdata_Geo::$namespaces);
71 parent::__construct();
72 $this->setPoint($point);
75 /**
76 * Retrieves a DOMElement which corresponds to this element and all
77 * child properties. This is used to build an entry back into a DOM
78 * and eventually XML text for application storage/persistence.
80 * @param DOMDocument $doc The DOMDocument used to construct DOMElements
81 * @return DOMElement The DOMElement representing this element and all
82 * child properties.
84 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
86 $element = parent::getDOM($doc, $majorVersion, $minorVersion);
87 if ($this->_point !== null) {
88 $element->appendChild($this->_point->getDOM($element->ownerDocument));
90 return $element;
93 /**
94 * Creates individual Entry objects of the appropriate type and
95 * stores them as members of this entry based upon DOM data.
97 * @param DOMNode $child The DOMNode to process
99 protected function takeChildFromDOM($child)
101 $absoluteNodeName = $child->namespaceURI . ':' . $child->localName;
103 switch ($absoluteNodeName) {
104 case $this->lookupNamespace('gml') . ':' . 'Point';
105 $point = new Zend_Gdata_Geo_Extension_GmlPoint();
106 $point->transferFromDOM($child);
107 $this->_point = $point;
108 break;
113 * Get the value for this element's point attribute.
115 * @see setPoint
116 * @return Zend_Gdata_Geo_Extension_GmlPoint The requested attribute.
118 public function getPoint()
120 return $this->_point;
124 * Set the value for this element's point attribute.
126 * @param Zend_Gdata_Geo_Extension_GmlPoint $value The desired value for this attribute.
127 * @return Zend_Gdata_Geo_Extension_GeoRssWhere Provides a fluent interface
129 public function setPoint($value)
131 $this->_point = $value;
132 return $this;