[ Index ] |
PHP Cross Reference of moodle-2.8 |
[Summary view] [Print] [Text view]
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 [email protected] so we can send you a copy immediately. 15 * 16 * @category Zend 17 * @package Zend_Gdata 18 * @subpackage Media 19 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) 20 * @license http://framework.zend.com/license/new-bsd New BSD License 21 * @version $Id$ 22 */ 23 24 /** 25 * @see Zend_Gdata_Extension 26 */ 27 require_once 'Zend/Gdata/Extension.php'; 28 29 /** 30 * Represents the media:rating element specific to YouTube. 31 * 32 * @category Zend 33 * @package Zend_Gdata 34 * @subpackage YouTube 35 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) 36 * @license http://framework.zend.com/license/new-bsd New BSD License 37 */ 38 class Zend_Gdata_YouTube_Extension_MediaRating extends Zend_Gdata_Extension 39 { 40 41 protected $_rootElement = 'rating'; 42 protected $_rootNamespace = 'media'; 43 44 /** 45 * @var string 46 */ 47 protected $_scheme = null; 48 49 /** 50 * @var string 51 */ 52 protected $_country = null; 53 54 /** 55 * Constructs a new MediaRating element 56 * 57 * @param string $text 58 * @param string $scheme 59 * @param string $country 60 */ 61 public function __construct($text = null, $scheme = null, $country = null) 62 { 63 $this->registerAllNamespaces(Zend_Gdata_Media::$namespaces); 64 parent::__construct(); 65 $this->_scheme = $scheme; 66 $this->_country = $country; 67 $this->_text = $text; 68 } 69 70 /** 71 * Retrieves a DOMElement which corresponds to this element and all 72 * child properties. This is used to build an entry back into a DOM 73 * and eventually XML text for sending to the server upon updates, or 74 * for application storage/persistence. 75 * 76 * @param DOMDocument $doc The DOMDocument used to construct DOMElements 77 * @return DOMElement The DOMElement representing this element and all 78 * child properties. 79 */ 80 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null) 81 { 82 $element = parent::getDOM($doc, $majorVersion, $minorVersion); 83 if ($this->_scheme !== null) { 84 $element->setAttribute('scheme', $this->_scheme); 85 } 86 if ($this->_country != null) { 87 $element->setAttribute('country', $this->_country); 88 } 89 return $element; 90 } 91 92 /** 93 * Given a DOMNode representing an attribute, tries to map the data into 94 * instance members. If no mapping is defined, the name and value are 95 * stored in an array. 96 * 97 * @param DOMNode $attribute The DOMNode attribute needed to be handled 98 */ 99 protected function takeAttributeFromDOM($attribute) 100 { 101 switch ($attribute->localName) { 102 case 'scheme': 103 $this->_scheme = $attribute->nodeValue; 104 break; 105 case 'country': 106 $this->_country = $attribute->nodeValue; 107 break; 108 default: 109 parent::takeAttributeFromDOM($attribute); 110 } 111 } 112 113 /** 114 * @return string 115 */ 116 public function getScheme() 117 { 118 return $this->_scheme; 119 } 120 121 /** 122 * @param string $value 123 * @return Zend_Gdata_YouTube_Extension_MediaRating Provides a fluent interface 124 */ 125 public function setScheme($value) 126 { 127 $this->_scheme = $value; 128 return $this; 129 } 130 131 /** 132 * @return string 133 */ 134 public function getCountry() 135 { 136 return $this->_country; 137 } 138 139 /** 140 * @param string $value 141 * @return Zend_Gdata_YouTube_Extension_MediaRating Provides a fluent interface 142 */ 143 public function setCountry($value) 144 { 145 $this->_country = $value; 146 return $this; 147 } 148 149 150 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 20:29:05 2014 | Cross-referenced by PHPXref 0.7.1 |