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

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 3.7 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:duration 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_Duration extends Zend_Gdata_Extension
38{
39
40 protected $_rootNamespace = 'yt';
41 protected $_rootElement = 'duration';
42 protected $_seconds = null;
43
44 /**
45 * Constructs a new Zend_Gdata_YouTube_Extension_Duration object.
46 * @param bool $seconds(optional) The seconds value of the element.
47 */
48 public function __construct($seconds = null)
49 {
50 $this->registerAllNamespaces(Zend_Gdata_YouTube::$namespaces);
51 parent::__construct();
52 $this->_seconds = $seconds;
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->_seconds !== null) {
69 $element->setAttribute('seconds', $this->_seconds);
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 valueare
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 'seconds':
85 $this->_seconds = $attribute->nodeValue;
86 break;
87 default:
88 parent::takeAttributeFromDOM($attribute);
89 }
90 }
91
92 /**
93 * Get the value for this element's seconds attribute.
94 *
95 * @return int The value associated with this attribute.
96 */
97 public function getSeconds()
98 {
99 return $this->_seconds;
100 }
101
102 /**
103 * Set the value for this element's seconds attribute.
104 *
105 * @param int $value The desired value for this attribute.
106 * @return Zend_Gdata_YouTube_Extension_Duration The element being modified.
107 */
108 public function setSeconds($value)
109 {
110 $this->_seconds = $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 * @return string The duration in seconds
119 */
120 public function __toString()
121 {
122 return $this->_seconds;
123 }
124
125}
Note: See TracBrowser for help on using the repository browser.