summaryrefslogtreecommitdiff
path: root/includes/XmlFunctions.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2006-10-11 18:12:39 +0000
committerPierre Schmitz <pierre@archlinux.de>2006-10-11 18:12:39 +0000
commit183851b06bd6c52f3cae5375f433da720d410447 (patch)
treea477257decbf3360127f6739c2f9d0ec57a03d39 /includes/XmlFunctions.php
MediaWiki 1.7.1 wiederhergestellt
Diffstat (limited to 'includes/XmlFunctions.php')
-rw-r--r--includes/XmlFunctions.php65
1 files changed, 65 insertions, 0 deletions
diff --git a/includes/XmlFunctions.php b/includes/XmlFunctions.php
new file mode 100644
index 00000000..64e349f2
--- /dev/null
+++ b/includes/XmlFunctions.php
@@ -0,0 +1,65 @@
+<?php
+
+/**
+ * Aliases for functions in the Xml module
+ */
+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 );
+}
+
+
+?>