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

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 4.0 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 Calendar
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 * Represents the gCal:quickAdd element used by the Calendar data API
30 *
31 * @category Zend
32 * @package Zend_Gdata
33 * @subpackage Calendar
34 * @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
35 * @license http://framework.zend.com/license/new-bsd New BSD License
36 */
37class Zend_Gdata_Calendar_Extension_QuickAdd extends Zend_Gdata_Extension
38{
39
40 protected $_rootNamespace = 'gCal';
41 protected $_rootElement = 'quickadd';
42 protected $_value = null;
43
44 /**
45 * Constructs a new Zend_Gdata_Calendar_Extension_QuickAdd object.
46 * @param string $value (optional) The text content of the element.
47 */
48 public function __construct($value = null)
49 {
50 $this->registerAllNamespaces(Zend_Gdata_Calendar::$namespaces);
51 parent::__construct();
52 $this->_value = $value;
53 }
54
55 /**
56 * Retrieves a DOMElement which corresponds to this element and all
57 * child properties. This is used to build an entry back into a DOM
58 * and eventually XML text for sending to the server upon updates, or
59 * for application storage/persistence.
60 *
61 * @param DOMDocument $doc The DOMDocument used to construct DOMElements
62 * @return DOMElement The DOMElement representing this element and all
63 * child properties.
64 */
65 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
66 {
67 $element = parent::getDOM($doc, $majorVersion, $minorVersion);
68 if ($this->_value !== null) {
69 $element->setAttribute('value', ($this->_value ? "true" : "false"));
70 }
71 return $element;
72 }
73
74 /**
75 * Given a DOMNode representing an attribute, tries to map the data into
76 * instance members. If no mapping is defined, the name and value are
77 * stored in an array.
78 *
79 * @param DOMNode $attribute The DOMNode attribute needed to be handled
80 */
81 protected function takeAttributeFromDOM($attribute)
82 {
83 switch ($attribute->localName) {
84 case 'value':
85 if ($attribute->nodeValue == "true") {
86 $this->_value = true;
87 }
88 else if ($attribute->nodeValue == "false") {
89 $this->_value = false;
90 }
91 else {
92 throw new Zend_Gdata_App_InvalidArgumentException("Expected 'true' or 'false' for gCal:selected#value.");
93 }
94 break;
95 default:
96 parent::takeAttributeFromDOM($attribute);
97 }
98 }
99
100 /**
101 * Get the value for this element's value attribute.
102 *
103 * @return string The value associated with this attribute.
104 */
105 public function getValue()
106 {
107 return $this->_value;
108 }
109
110 /**
111 * Set the value for this element's value attribute.
112 *
113 * @param string $value The desired value for this attribute.
114 * @return Zend_Gdata_Calendar_Extension_QuickAdd The element being modified.
115 */
116 public function setValue($value)
117 {
118 $this->_value = $value;
119 return $this;
120 }
121
122 /**
123 * Magic toString method allows using this directly via echo
124 * Works best in PHP >= 4.2.0
125 */
126 public function __toString()
127 {
128 return $this->getValue();
129 }
130
131}
Note: See TracBrowser for help on using the repository browser.