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

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 4.1 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 Gapps
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 * @see Zend_Gdata_Gapps
30 */
31require_once 'Zend/Gdata/Gapps.php';
32
33/**
34 * Represents the apps:emailList element used by the Apps data API. This
35 * class represents properties of an email list and is usually contained
36 * within an instance of Zend_Gdata_Gapps_EmailListEntry.
37 *
38 * @category Zend
39 * @package Zend_Gdata
40 * @subpackage Gapps
41 * @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
42 * @license http://framework.zend.com/license/new-bsd New BSD License
43 */
44class Zend_Gdata_Gapps_Extension_EmailList extends Zend_Gdata_Extension
45{
46
47 protected $_rootNamespace = 'apps';
48 protected $_rootElement = 'emailList';
49
50 /**
51 * The name of the email list. This name is used as the email address
52 * for this list.
53 *
54 * @var string
55 */
56 protected $_name = null;
57
58 /**
59 * Constructs a new Zend_Gdata_Gapps_Extension_EmailList object.
60 *
61 * @param string $name (optional) The name to be used for this email list.
62 */
63 public function __construct($name = null)
64 {
65 $this->registerAllNamespaces(Zend_Gdata_Gapps::$namespaces);
66 parent::__construct();
67 $this->_name = $name;
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->_name !== null) {
84 $element->setAttribute('name', $this->_name);
85 }
86 return $element;
87 }
88
89 /**
90 * Given a DOMNode representing an attribute, tries to map the data into
91 * instance members. If no mapping is defined, the name and value are
92 * stored in an array.
93 *
94 * @param DOMNode $attribute The DOMNode attribute needed to be handled
95 */
96 protected function takeAttributeFromDOM($attribute)
97 {
98 switch ($attribute->localName) {
99 case 'name':
100 $this->_name = $attribute->nodeValue;
101 break;
102 default:
103 parent::takeAttributeFromDOM($attribute);
104 }
105 }
106
107 /**
108 * Get the value for this element's name attribute.
109 *
110 * @see setName
111 * @return string The requested attribute.
112 */
113 public function getName()
114 {
115 return $this->_name;
116 }
117
118 /**
119 * Set the value for this element's name attribute. This is the unique
120 * name which will be used to identify this email list within this
121 * domain, and will be used to form this email list's email address.
122 *
123 * @param string $value The desired value for this attribute.
124 * @return Zend_Gdata_Gapps_Extension_EmailList The element being modified.
125 */
126 public function setName($value)
127 {
128 $this->_name = $value;
129 return $this;
130 }
131
132 /**
133 * Magic toString method allows using this directly via echo
134 * Works best in PHP >= 4.2.0
135 *
136 * @return string
137 */
138 public function __toString()
139 {
140 return $this->getName();
141 }
142
143}
Note: See TracBrowser for help on using the repository browser.