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.
18 * @subpackage Calendar
19 * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
20 * @license http://framework.zend.com/license/new-bsd New BSD License
21 * @version $Id: Hidden.php 16971 2009-07-22 18:05:45Z mikaelkael $
25 * @see Zend_Gdata_Extension
27 require_once 'Zend/Gdata/Extension.php';
30 * Represents the gCal:hidden element used by the Calendar data API
34 * @subpackage Calendar
35 * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
36 * @license http://framework.zend.com/license/new-bsd New BSD License
38 class Zend_Gdata_Calendar_Extension_Hidden
extends Zend_Gdata_Extension
41 protected $_rootNamespace = 'gCal';
42 protected $_rootElement = 'hidden';
43 protected $_value = null;
46 * Constructs a new Zend_Gdata_Calendar_Extension_Hidden object.
47 * @param bool $value (optional) The value of the element.
49 public function __construct($value = null)
51 $this->registerAllNamespaces(Zend_Gdata_Calendar
::$namespaces);
52 parent
::__construct();
53 $this->_value
= $value;
57 * Retrieves a DOMElement which corresponds to this element and all
58 * child properties. This is used to build an entry back into a DOM
59 * and eventually XML text for sending to the server upon updates, or
60 * for application storage/persistence.
62 * @param DOMDocument $doc The DOMDocument used to construct DOMElements
63 * @return DOMElement The DOMElement representing this element and all
66 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
68 $element = parent
::getDOM($doc, $majorVersion, $minorVersion);
69 if ($this->_value
!== null) {
70 $element->setAttribute('value', ($this->_value ?
"true" : "false"));
76 * Given a DOMNode representing an attribute, tries to map the data into
77 * instance members. If no mapping is defined, the name and value are
80 * @param DOMNode $attribute The DOMNode attribute needed to be handled
82 protected function takeAttributeFromDOM($attribute)
84 switch ($attribute->localName
) {
86 if ($attribute->nodeValue
== "true") {
89 else if ($attribute->nodeValue
== "false") {
90 $this->_value
= false;
93 require_once 'Zend/Gdata/App/InvalidArgumentException.php';
94 throw new Zend_Gdata_App_InvalidArgumentException("Expected 'true' or 'false' for gCal:selected#value.");
98 parent
::takeAttributeFromDOM($attribute);
103 * Get the value for this element's value attribute.
105 * @return string The requested attribute.
107 public function getValue()
109 return $this->_value
;
113 * Set the value for this element's value attribute.
115 * @param bool $value The desired value for this attribute.
116 * @return Zend_Gdata_Calendar_Extension_Hidden The element being modified.
118 public function setValue($value)
120 $this->_value
= $value;
125 * Magic toString method allows using this directly via echo
126 * Works best in PHP >= 4.2.0
128 public function __toString()
130 return $this->_value
;