-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcap.write.class.php
200 lines (179 loc) · 4.88 KB
/
cap.write.class.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<?php
/*
* Copyright (c) 2015 Niklas Spanring <n.spanring@backbone.co.at>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file cap.write.class.php
* \ingroup xml
* \brief File of class with XML builder
*/
class xml{
var $file;
var $break = "\r\n";
var $tabspace = "\t";
var $lt = '<';
var $gt = '>';
var $tab = 0;
var $tab_tree=array();
/**
* initialize XML
*
* @param string $version The version of the XML
* @param string $encoding The encoding of the XML
* @param string $options The options of the XML
* @return None
*/
function xml($version, $encoding, $options=array()){
$this->addrow(('<'.'?xml version="'.$version.'" encoding="'.$encoding.'"'.$this->aToT($options).' ?'.'>'));
$this->addrow(('<'.'?xml-stylesheet type="text/xsl" href="cap_style.xsl" ?'.'>'));
}
/**
* make a tag in the XML file
*
* @param string $tag The name of the XML Tag
* @param string $value The value of the XML Tag
* @param array $options The options of the XML Tag
* @param int $trimtext Trim or not Trim XML Tag value
* @return None
*/
function tag_simple($tag,$value='',$options=array(),$trimtext=false)
{
if ($trimtext == 1) $value = trim($value);
if($value == '' and empty($options)) return '';
$row = ($this->lt.$tag.$this->aToT($options));
if(trim($value) != ''){
$row.= ($this->gt);
$row.= htmlspecialchars(($value), ENT_QUOTES, "UTF-8");
$row.= ($this->lt.'/'.$tag.$this->gt);
}else{
if($tag == 'summary'){
$row.= ($this->gt);
$row.= 'No Summary';
$row.= ($this->lt.'/'.$tag.$this->gt);
}else{
$row.= ('/'.$this->gt);
}
}
$this->addrow($row);
}
/**
* make a open tag in the XML file
*
* @param string $tag The name of the XML Tag
* @param array $options The options of the XML Tag
* @return None
*/
function tag_open($tag,$options=array() ){
$row =( $this->lt.$tag.$this->aToT($options).$this->gt );
$this->addrow($row);
$this->tab++;
array_push($this->tab_tree,$tag);
}
/**
* close a open tag in the XML file
*
* @param string $tag The name of the XML Tag
* @return None
*/
function tag_close($tag){
$c=0;
if($this->tab > 0)
do{
$ltag = array_pop($this->tab_tree);
$this->tab--;
$row = ($this->lt.'/'.$ltag.$this->gt);
$this->addrow($row);
$c++;
}while(($ltag != $tag || ( is_int($tag) && $c < $tag )) && $this->tab > 0 );
}
/**
* Make a blank line in the XML file
*
* @return None
*/
function add_emptyrow(){
$this->addrow('');
}
/**
* Make a <![CDATA[]]> Tag in the XML File
*
* @param string $value The name of the CDATA Tag
* @return None
*/
function cdata($value){
return '<![CDATA['.$value.']]>';
}
/**
*
*/
function tab(){
if($this->tab == 0) return '';
return implode('',array_fill(0,$this->tab,$this->tabspace));
}
/**
* Add a row with content in the XML File
*
* @param string $content The Content wich should be added
* @return None
*/
function addrow($content){
$this->file[] = $this->tab().$content.$this->break;
}
/**
* make the option style
*
* @param array $options The options wich should be added
* @return None
*/
function aToT($options){
if(!is_array($options)) return '';
$ret = '';
foreach($options as $key => $value){
$ret .= ' '.$key.'="'.$value.'"';
}
return $ret;
}
/**
* Add a Comment
*
* @param string $comment the comment
* @return None
*/
function addComment($comment){
$this->addrow(('<!--'.$comment.'-->'));
}
/**
* Output The File
*
* @return $this->file All content of the File
*/
function output(){
return (implode('',$this->file));
}
/*
* Function to Debug cap.write.class.php
*
* @return array $this All content of the Class
*/
function Debug()
{
print '<pre>';
print_r($this);
print '</pre>';
exit;
}
}
?>