~chroot64bit/zivios/gentoo-experimental

« back to all changes in this revision

Viewing changes to application/library/Zend/Gdata/Media/Extension/MediaRating.php

  • Committer: Mustafa A. Hashmi
  • Date: 2008-12-04 13:32:21 UTC
  • Revision ID: mhashmi@zivios.org-20081204133221-0nd1trunwevijj38
Inclusion of new installation framework with ties to zend layout and dojo layout

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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_App_Extension
 
25
 */
 
26
require_once 'Zend/Gdata/App/Extension.php';
 
27
 
 
28
/**
 
29
 * Represents the media:rating element
 
30
 *
 
31
 * @category   Zend
 
32
 * @package    Zend_Gdata
 
33
 * @copyright  Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
 
34
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 
35
 */
 
36
class Zend_Gdata_Media_Extension_MediaRating extends Zend_Gdata_Extension
 
37
{
 
38
 
 
39
    protected $_rootElement = 'rating'; 
 
40
    protected $_rootNamespace = 'media';
 
41
 
 
42
    /**
 
43
     * @var string
 
44
     */
 
45
    protected $_scheme = null;
 
46
 
 
47
    /**
 
48
     * Constructs a new MediaRating element
 
49
     *
 
50
     * @param string $text
 
51
     * @param string $scheme
 
52
     */
 
53
    public function __construct($text = null, $scheme = null)
 
54
    {
 
55
        foreach (Zend_Gdata_Media::$namespaces as $nsPrefix => $nsUri) {
 
56
            $this->registerNamespace($nsPrefix, $nsUri);
 
57
        }
 
58
        parent::__construct();
 
59
        $this->_scheme = $scheme;
 
60
        $this->_text = $text;
 
61
    }
 
62
 
 
63
    /**
 
64
     * Retrieves a DOMElement which corresponds to this element and all 
 
65
     * child properties.  This is used to build an entry back into a DOM
 
66
     * and eventually XML text for sending to the server upon updates, or
 
67
     * for application storage/persistence.  
 
68
     *
 
69
     * @param DOMDocument $doc The DOMDocument used to construct DOMElements
 
70
     * @return DOMElement The DOMElement representing this element and all 
 
71
     * child properties.
 
72
     */
 
73
    public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
 
74
    {
 
75
        $element = parent::getDOM($doc, $majorVersion, $minorVersion);
 
76
        if ($this->_scheme !== null) {
 
77
            $element->setAttribute('scheme', $this->_scheme);
 
78
        }
 
79
        return $element;
 
80
    }
 
81
 
 
82
    /**
 
83
     * Given a DOMNode representing an attribute, tries to map the data into
 
84
     * instance members.  If no mapping is defined, the name and value are 
 
85
     * stored in an array.
 
86
     *
 
87
     * @param DOMNode $attribute The DOMNode attribute needed to be handled
 
88
     */
 
89
    protected function takeAttributeFromDOM($attribute)
 
90
    {
 
91
        switch ($attribute->localName) {
 
92
        case 'scheme':
 
93
            $this->_scheme = $attribute->nodeValue;
 
94
            break;
 
95
        default:
 
96
            parent::takeAttributeFromDOM($attribute);
 
97
        }
 
98
    }
 
99
 
 
100
    /**
 
101
     * @return string
 
102
     */
 
103
    public function getScheme()
 
104
    {
 
105
        return $this->_scheme;
 
106
    }
 
107
 
 
108
    /**
 
109
     * @param string $value
 
110
     * @return Zend_Gdata_Media_Extension_MediaRating Provides a fluent interface
 
111
     */
 
112
    public function setScheme($value)
 
113
    {
 
114
        $this->_scheme = $value;
 
115
        return $this;
 
116
    }
 
117
 
 
118
}