-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathXmlNode.php
138 lines (124 loc) · 3.03 KB
/
XmlNode.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<?php
/**
* XML object for a node.
*
* PHP 5
*
* Cake Toolkit (http://caketoolkit.org)
* Copyright 2012, James Watts (http://github.com/jameswatts)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright 2012, James Watts (http://github.com/jameswatts)
* @link http://caketoolkit.org Cake Toolkit
* @package Ctk.View.Factory.Html.Objects
* @since CakePHP(tm) v 2.2.0.0
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
App::uses('CtkNode', 'Ctk.Lib');
/**
* Creates an object representing an XML node.
*
* @package Ctk.Factory
*/
class XmlNode extends CtkNode {
/**
* The template to use for this object.
*
* @var string The name of the template.
*/
protected $_template = 'node';
/**
* The configuration parameters used by the template for this object.
*
* @var array The template configuration parameters.
*/
protected $_params = array(
'name' => 'node',
'cdata' => false,
'value' => null
);
/**
* The type of element this object represents.
*
* @var string The element type.
*/
protected $_nodeType = 'node';
/**
* Determines if the node accepts events.
*
* @var boolean Set to FALSE to block adding events.
*/
protected $_allowEvents = false;
/**
* The collection of attributes for the XML node.
*
* @var array The node attributes.
*/
protected $_attributes = array();
/**
* Determines if a given attribute has been set.
*
* @param string $name Name of the attribute.
* @return boolean
*/
final public function hasAttribute($name) {
return isset($this->_attributes[strtolower($name)]);
}
/**
* Returns an attribute set on the node.
*
* @param string $name Name of the attribute.
* @return mixed
* @throws CakeException if attribute has not been previously set.
*/
final public function getAttribute($name) {
if ($this->hasAttribute($name)) {
return $this->_attributes[strtolower($name)];
}
throw new CakeException(sprintf('Unknown attrbiute: %s', $name));
}
/**
* Sets an attribute on the node.
*
* @param string $name Name of the attribute.
* @param mixed $value Value of the attribute.
* @return XmlNode
*/
final public function setAttribute($name, $value = null) {
$this->_attributes[strtolower($name)] = $value;
return $this;
}
/**
* Removes a previously set attribute from the node.
*
* @param string $name Name of the attribute.
* @return XmlNode
*/
final public function removeAttribute($name) {
unset($this->_attributes[strtolower($name)]);
return $this;
}
/**
* Removes all attributes previously set on the node.
*
* @return XmlNode
*/
final public function clearAttributes() {
$this->_attributes = array();
return $this;
}
/**
* Gets the content for the attributes for the template.
*
* @return string
*/
final public function parseAttributes() {
$content = '';
foreach ($this->_attributes as $name => $value) {
$content .= ' ' . $name . '="' . str_replace('"', '\"', $value) . '"';
}
return $content;
}
}