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

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 3.6 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 YouTube
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 yt:racy element used by the YouTube data API
30 *
31 * @category Zend
32 * @package Zend_Gdata
33 * @subpackage YouTube
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_YouTube_Extension_Racy extends Zend_Gdata_Extension
38{
39
40 protected $_rootNamespace = 'yt';
41 protected $_rootElement = 'racy';
42 protected $_state = null;
43
44 /**
45 * Constructs a new Zend_Gdata_YouTube_Extension_Racy object.
46 * @param bool $state(optional) The state value of the element.
47 */
48 public function __construct($state = null)
49 {
50 $this->registerAllNamespaces(Zend_Gdata_YouTube::$namespaces);
51 parent::__construct();
52 $this->_state = $state;
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->_state !== null) {
69 $element->setAttribute('state', $this->_state);
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 'state':
85 $this->_state = $attribute->nodeValue;
86 break;
87 default:
88 parent::takeAttributeFromDOM($attribute);
89 }
90 }
91
92 /**
93 * Get the value for this element's state attribute.
94 *
95 * @return bool The value associated with this attribute.
96 */
97 public function getState()
98 {
99 return $this->_state;
100 }
101
102 /**
103 * Set the value for this element's state attribute.
104 *
105 * @param bool $value The desired value for this attribute.
106 * @return Zend_Gdata_YouTube_Extension_Racy The element being modified.
107 */
108 public function setState($value)
109 {
110 $this->_state = $value;
111 return $this;
112 }
113
114 /**
115 * Magic toString method allows using this directly via echo
116 * Works best in PHP >= 4.2.0
117 */
118 public function __toString()
119 {
120 return $this->_state;
121 }
122
123}
Note: See TracBrowser for help on using the repository browser.