summaryrefslogtreecommitdiff
path: root/includes/XmlFunctions.php
blob: cbdcf5c4b8840b82f662954d68a2374f60de0559 (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
<?php
/**
 * Aliases for functions in the Xml module
 * Look at the Xml class (Xml.php) for the implementations.
 */
function wfElement( $element, $attribs = null, $contents = '') {
	return Xml::element( $element, $attribs, $contents );
}
function wfElementClean( $element, $attribs = array(), $contents = '') {
	return Xml::elementClean( $element, $attribs, $contents );
}
function wfOpenElement( $element, $attribs = null ) {
	return Xml::openElement( $element, $attribs );
}
function wfCloseElement( $element ) {
	return "</$element>";
}
function &HTMLnamespaceselector($selected = '', $allnamespaces = null, $includehidden=false) {
	return Xml::namespaceSelector( $selected, $allnamespaces, $includehidden );
}
function wfSpan( $text, $class, $attribs=array() ) {
	return Xml::span( $text, $class, $attribs );
}
function wfInput( $name, $size=false, $value=false, $attribs=array() ) {
	return Xml::input( $name, $size, $value, $attribs );
}
function wfAttrib( $name, $present = true ) {
	return Xml::attrib( $name, $present );
}
function wfCheck( $name, $checked=false, $attribs=array() ) {
	return Xml::check( $name, $checked, $attribs );
}
function wfRadio( $name, $value, $checked=false, $attribs=array() ) {
	return Xml::radio( $name, $value, $checked, $attribs );
}
function wfLabel( $label, $id ) {
	return Xml::label( $label, $id );
}
function wfInputLabel( $label, $name, $id, $size=false, $value=false, $attribs=array() ) {
	return Xml::inputLabel( $label, $name, $id, $size, $value, $attribs );
}
function wfCheckLabel( $label, $name, $id, $checked=false, $attribs=array() ) {
	return Xml::checkLabel( $label, $name, $id, $checked, $attribs );
}
function wfRadioLabel( $label, $name, $value, $id, $checked=false, $attribs=array() ) {
	return Xml::radioLabel( $label, $name, $value, $id, $checked, $attribs );
}
function wfSubmitButton( $value, $attribs=array() ) {
	return Xml::submitButton( $value, $attribs );
}
function wfHidden( $name, $value, $attribs=array() ) {
	return Xml::hidden( $name, $value, $attribs );
}
function wfEscapeJsString( $string ) {
	return Xml::escapeJsString( $string );
}
function wfIsWellFormedXml( $text ) {
	return Xml::isWellFormed( $text );
}
function wfIsWellFormedXmlFragment( $text ) {
	return Xml::isWellFormedXmlFragment( $text );
}


?>