source: trunk/www.guidonia.net/wp/wp-content/plugins/webtv/Drivers/Zend/Gdata/Geo/Extension/GmlPoint.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 3.8 KB
Line 
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_Gdata
18 * @subpackage Geo
19 * @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
20 * @license http://framework.zend.com/license/new-bsd New BSD License
21 */
22
23/**
24 * @see Zend_Gdata_Extension
25 */
26require_once 'Zend/Gdata/Extension.php';
27
28/**
29 * @see Zend_Gdata_Geo
30 */
31require_once 'Zend/Gdata/Geo.php';
32
33/**
34 * @see Zend_Gdata_Geo_Extension_GmlPos
35 */
36require_once 'Zend/Gdata/Geo/Extension/GmlPos.php';
37
38
39/**
40 * Represents the gml:point element used by the Gdata Geo extensions.
41 *
42 * @category Zend
43 * @package Zend_Gdata
44 * @subpackage Geo
45 * @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
46 * @license http://framework.zend.com/license/new-bsd New BSD License
47 */
48class Zend_Gdata_Geo_Extension_GmlPoint extends Zend_Gdata_Extension
49{
50
51 protected $_rootNamespace = 'gml';
52 protected $_rootElement = 'Point';
53
54 /**
55 * The position represented by this GmlPoint
56 *
57 * @var Zend_Gdata_Geo_Extension_GmlPos
58 */
59 protected $_pos = null;
60
61 /**
62 * Create a new instance.
63 *
64 * @param Zend_Gdata_Geo_Extension_GmlPos $pos (optional) Pos to which this
65 * object should be initialized.
66 */
67 public function __construct($pos = null)
68 {
69 $this->registerAllNamespaces(Zend_Gdata_Geo::$namespaces);
70 parent::__construct();
71 $this->setPos($pos);
72 }
73
74 /**
75 * Retrieves a DOMElement which corresponds to this element and all
76 * child properties. This is used to build an entry back into a DOM
77 * and eventually XML text for application storage/persistence.
78 *
79 * @param DOMDocument $doc The DOMDocument used to construct DOMElements
80 * @return DOMElement The DOMElement representing this element and all
81 * child properties.
82 */
83 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
84 {
85 $element = parent::getDOM($doc, $majorVersion, $minorVersion);
86 if ($this->_pos !== null) {
87 $element->appendChild($this->_pos->getDOM($element->ownerDocument));
88 }
89 return $element;
90 }
91
92 /**
93 * Creates individual Entry objects of the appropriate type and
94 * stores them as members of this entry based upon DOM data.
95 *
96 * @param DOMNode $child The DOMNode to process
97 */
98 protected function takeChildFromDOM($child)
99 {
100 $absoluteNodeName = $child->namespaceURI . ':' . $child->localName;
101
102 switch ($absoluteNodeName) {
103 case $this->lookupNamespace('gml') . ':' . 'pos';
104 $pos = new Zend_Gdata_Geo_Extension_GmlPos();
105 $pos->transferFromDOM($child);
106 $this->_pos = $pos;
107 break;
108 }
109 }
110
111 /**
112 * Get the value for this element's pos attribute.
113 *
114 * @see setPos
115 * @return Zend_Gdata_Geo_Extension_GmlPos The requested attribute.
116 */
117 public function getPos()
118 {
119 return $this->_pos;
120 }
121
122 /**
123 * Set the value for this element's distance attribute.
124 *
125 * @param Zend_Gdata_Geo_Extension_GmlPos $value The desired value for this attribute
126 * @return Zend_Gdata_Geo_Extension_GmlPoint Provides a fluent interface
127 */
128 public function setPos($value)
129 {
130 $this->_pos = $value;
131 return $this;
132 }
133
134
135}
Note: See TracBrowser for help on using the repository browser.