blob: 0c8731a75301e520000191308fee1079655db6e3 (
plain)
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
|
<?php
/**
* @class ODDDocument ODD Document container.
* This class is used during import and export to construct.
* @author Curverider Ltd
*/
class ODDDocument implements Iterator {
/**
* ODD Version
*
* @var string
*/
private $ODDSupportedVersion = "1.0";
/**
* Elements of the document.
*/
private $elements;
/**
* Optional wrapper factory.
*/
private $wrapperfactory;
public function __construct(array $elements = NULL) {
if ($elements) {
if (is_array($elements)) {
$this->elements = $elements;
} else {
$this->addElement($elements);
}
} else {
$this->elements = array();
}
}
/**
* Return the version of ODD being used.
*
* @return string
*/
public function getVersion() {
return $this->ODDSupportedVersion;
}
public function getNumElements() {
return count($this->elements);
}
public function addElement(ODD $element) {
if (!is_array($this->elements)) {
$this->elements = array();
$this->elements[] = $element;
}
}
public function addElements(array $elements) {
foreach ($elements as $element) {
$this->addElement($element);
}
}
public function getElements() {
return $this->elements;
}
/**
* Set an optional wrapper factory to optionally embed the ODD document in another format.
*/
public function setWrapperFactory(ODDWrapperFactory $factory) {
$this->wrapperfactory = $factory;
}
/**
* Magic function to generate valid ODD XML for this item.
*/
public function __toString() {
$xml = "";
if ($this->wrapperfactory) {
// A wrapper has been provided
$wrapper = $this->wrapperfactory->getElementWrapper($this); // Get the wrapper for this element
$xml = $wrapper->wrap($this); // Wrap this element (and subelements)
} else {
// Output begin tag
$generated = date("r");
$xml .= "<odd version=\"{$this->ODDSupportedVersion}\" generated=\"$generated\">\n";
// Get XML for elements
foreach ($this->elements as $element) {
$xml .= "$element";
}
// Output end tag
$xml .= "</odd>\n";
}
return $xml;
}
// ITERATOR INTERFACE //////////////////////////////////////////////////////////////
/*
* This lets an entity's attributes be displayed using foreach as a normal array.
* Example: http://www.sitepoint.com/print/php5-standard-library
*/
private $valid = FALSE;
function rewind() {
$this->valid = (FALSE !== reset($this->elements));
}
function current() {
return current($this->elements);
}
function key() {
return key($this->elements);
}
function next() {
$this->valid = (FALSE !== next($this->elements));
}
function valid() {
return $this->valid;
}
}
|