source: trunk/www.guidonia.net/wp/wp-content/plugins/webtv/Drivers/Zend/Gdata/YouTube/Extension/MediaRating.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 Media
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 media:rating element specific to YouTube.
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_MediaRating extends Zend_Gdata_Extension
38{
39
40 protected $_rootElement = 'rating';
41 protected $_rootNamespace = 'media';
42
43 /**
44 * @var string
45 */
46 protected $_scheme = null;
47
48 /**
49 * @var string
50 */
51 protected $_country = null;
52
53 /**
54 * Constructs a new MediaRating element
55 *
56 * @param string $text
57 * @param string $scheme
58 * @param string $country
59 */
60 public function __construct($text = null, $scheme = null, $country = null)
61 {
62 $this->registerAllNamespaces(Zend_Gdata_Media::$namespaces);
63 parent::__construct();
64 $this->_scheme = $scheme;
65 $this->_country = $country;
66 $this->_text = $text;
67 }
68
69 /**
70 * Retrieves a DOMElement which corresponds to this element and all
71 * child properties. This is used to build an entry back into a DOM
72 * and eventually XML text for sending to the server upon updates, or
73 * for application storage/persistence.
74 *
75 * @param DOMDocument $doc The DOMDocument used to construct DOMElements
76 * @return DOMElement The DOMElement representing this element and all
77 * child properties.
78 */
79 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
80 {
81 $element = parent::getDOM($doc, $majorVersion, $minorVersion);
82 if ($this->_scheme !== null) {
83 $element->setAttribute('scheme', $this->_scheme);
84 }
85 if ($this->_country != null) {
86 $element->setAttribute('country', $this->_country);
87 }
88 return $element;
89 }
90
91 /**
92 * Given a DOMNode representing an attribute, tries to map the data into
93 * instance members. If no mapping is defined, the name and value are
94 * stored in an array.
95 *
96 * @param DOMNode $attribute The DOMNode attribute needed to be handled
97 */
98 protected function takeAttributeFromDOM($attribute)
99 {
100 switch ($attribute->localName) {
101 case 'scheme':
102 $this->_scheme = $attribute->nodeValue;
103 break;
104 case 'country':
105 $this->_country = $attribute->nodeValue;
106 break;
107 default:
108 parent::takeAttributeFromDOM($attribute);
109 }
110 }
111
112 /**
113 * @return string
114 */
115 public function getScheme()
116 {
117 return $this->_scheme;
118 }
119
120 /**
121 * @param string $value
122 * @return Zend_Gdata_YouTube_Extension_MediaRating Provides a fluent interface
123 */
124 public function setScheme($value)
125 {
126 $this->_scheme = $value;
127 return $this;
128 }
129
130 /**
131 * @return string
132 */
133 public function getCountry()
134 {
135 return $this->_country;
136 }
137
138 /**
139 * @param string $value
140 * @return Zend_Gdata_YouTube_Extension_MediaRating Provides a fluent interface
141 */
142 public function setCountry($value)
143 {
144 $this->_country = $value;
145 return $this;
146 }
147
148
149}
Note: See TracBrowser for help on using the repository browser.