MediaWiki  1.28.3
Xml Class Reference

Module of static functions for generating XML. More...

Static Public Member Functions

static attrib ($name, $present=true)
 Internal function for use in checkboxes and radio buttons and such. More...
 
static buildForm ($fields, $submitLabel=null, $submitAttribs=[])
 Generate a form (without the opening form element). More...
 
static buildTable ($rows, $attribs=[], $headers=null)
 Build a table of data. More...
 
static buildTableRow ($attribs, $cells)
 Build a row for a table. More...
 
static check ($name, $checked=false, $attribs=[])
 Convenience function to build an HTML checkbox. More...
 
static checkLabel ($label, $name, $id, $checked=false, $attribs=[])
 Convenience function to build an HTML checkbox with a label. More...
 
static closeElement ($element)
 Shortcut to close an XML element. More...
 
static dateMenu ($year, $month)
 
static element ($element, $attribs=null, $contents= '', $allowShortTag=true)
 Format an XML element with given attributes and, optionally, text content. More...
 
static elementClean ($element, $attribs=[], $contents= '')
 Format an XML element as with self::element(), but run text through the $wgContLang->normalize() validator first to ensure that no invalid UTF-8 is passed. More...
 
static encodeJsCall ($name, $args, $pretty=false)
 Create a call to a JavaScript function. More...
 
static encodeJsVar ($value, $pretty=false)
 Encode a variable of arbitrary type to JavaScript. More...
 
static escapeJsString ($string)
 Returns an escaped string suitable for inclusion in a string literal for JavaScript source code. More...
 
static escapeTagsOnly ($in)
 Replace " > and < with their respective HTML entities ( ", >, <) More...
 
static expandAttributes ($attribs)
 Given an array of ('attributename' => 'value'), it generates the code to set the XML attributes : attributename="value". More...
 
static fieldset ($legend=false, $content=false, $attribs=[])
 Shortcut for creating fieldsets. More...
 
static input ($name, $size=false, $value=false, $attribs=[])
 Convenience function to build an HTML text input field. More...
 
static inputLabel ($label, $name, $id, $size=false, $value=false, $attribs=[])
 Convenience function to build an HTML text input field with a label. More...
 
static inputLabelSep ($label, $name, $id, $size=false, $value=false, $attribs=[])
 Same as Xml::inputLabel() but return input and label in an array. More...
 
static isWellFormedXmlFragment ($text)
 Check if a string is a well-formed XML fragment. More...
 
static label ($label, $id, $attribs=[])
 Convenience function to build an HTML form label. More...
 
static languageSelector ($selected, $customisedOnly=true, $inLanguage=null, $overrideAttrs=[], Message $msg=null)
 Construct a language selector appropriate for use in a form or preferences. More...
 
static listDropDown ($name= '', $list= '', $other= '', $selected= '', $class= '', $tabindex=null)
 Build a drop-down box from a textual list. More...
 
static monthSelector ($selected= '', $allmonths=null, $id= 'month')
 Create a date selector. More...
 
static openElement ($element, $attribs=null)
 This opens an XML element. More...
 
static option ($text, $value=null, $selected=false, $attribs=[])
 Convenience function to build an HTML drop-down list item. More...
 
static password ($name, $size=false, $value=false, $attribs=[])
 Convenience function to build an HTML password input field. More...
 
static radio ($name, $value, $checked=false, $attribs=[])
 Convenience function to build an HTML radio button. More...
 
static radioLabel ($label, $name, $value, $id, $checked=false, $attribs=[])
 Convenience function to build an HTML radio button with a label. More...
 
static span ($text, $class, $attribs=[])
 Shortcut to make a span element. More...
 
static submitButton ($value, $attribs=[])
 Convenience function to build an HTML submit button When $wgUseMediaWikiUIEverywhere is true it will default to a progressive button. More...
 
static tags ($element, $attribs=null, $contents)
 Same as Xml::element(), but does not escape contents. More...
 
static textarea ($name, $content, $cols=40, $rows=5, $attribs=[])
 Shortcut for creating textareas. More...
 
static wrapClass ($text, $class, $tag= 'span', $attribs=[])
 Shortcut to make a specific element with a class attribute. More...
 

Static Private Member Functions

static isWellFormed ($text)
 Check if a string is well-formed XML. More...
 

Detailed Description

Module of static functions for generating XML.

Definition at line 26 of file Xml.php.

Member Function Documentation

static Xml::attrib (   $name,
  $present = true 
)
static

Internal function for use in checkboxes and radio buttons and such.

Parameters
string$name
bool$present
Returns
array

Definition at line 313 of file Xml.php.

References $name.

static Xml::buildForm (   $fields,
  $submitLabel = null,
  $submitAttribs = [] 
)
static

Generate a form (without the opening form element).

Output optionally includes a submit button.

Parameters
array$fieldsAssociative array, key is the name of a message that contains a description for the field, value is an HTML string containing the appropriate input.
string$submitLabelThe name of a message containing a label for the submit button.
array$submitAttribsThe attributes to add to the submit button
Returns
string HTML form.

Definition at line 770 of file Xml.php.

References as, closeElement(), openElement(), submitButton(), tags(), text, and wfMessage().

static Xml::buildTable (   $rows,
  $attribs = [],
  $headers = null 
)
static

Build a table of data.

Parameters
array$rowsAn array of arrays of strings, each to be a row in a table
array$attribsAn array of attributes to apply to the table tag [optional]
array$headersAn array of strings to use as table headers [optional]
Returns
string

Definition at line 809 of file Xml.php.

References $attribs, $header, $s, as, buildTableRow(), closeElement(), element(), and openElement().

static Xml::buildTableRow (   $attribs,
  $cells 
)
static

Build a row for a table.

Parameters
array$attribsAn array of attributes to apply to the tr tag
array$cellsAn array of strings to put in
Returns
string

Definition at line 848 of file Xml.php.

References $attribs, $s, as, closeElement(), element(), and openElement().

Referenced by buildTable().

static Xml::check (   $name,
  $checked = false,
  $attribs = [] 
)
static

Convenience function to build an HTML checkbox.

Parameters
string$nameValue of the name attribute
bool$checkedWhether the checkbox is checked or not
array$attribsArray other attributes
Returns
string HTML

Definition at line 324 of file Xml.php.

References $attribs, and $name.

Referenced by SpecialUndelete\formatFileRow(), SpecialUndelete\formatRevisionRow(), WebInstaller\getCheckBox(), EditPage\getCheckboxes(), SpecialRecentChangesLinked\getExtraOptions(), HTMLCheckField\getInputHTML(), HTMLMultiSelectField\getOneCheckbox(), HTMLCheckMatrix\getOneCheckbox(), LogEventsList\getShowHideLinks(), and HistoryPager\historyLine().

static Xml::closeElement (   $element)
static

Shortcut to close an XML element.

Parameters
string$elementElement name
Returns
string

Definition at line 118 of file Xml.php.

Referenced by AllMessagesTablePager\buildForm(), ProtectionForm\buildForm(), buildForm(), buildTable(), buildTableRow(), Article\confirmDelete(), SpecialRecentChanges\doHeader(), SpecialWatchlist\doHeader(), SpecialStatistics\execute(), SpecialListGroupRights\execute(), QueryPage\execute(), SiteExporter\exportSite(), SiteExporter\exportSites(), fieldset(), SpecialNewpages\form(), SpecialStatistics\formatRowHeader(), SpecialStatistics\getEditStats(), SpecialVersion\getExtensionCredits(), UsersPager\getPageHeader(), SpecialStatistics\getPageStats(), MysqlInstaller\getSettingsForm(), SpecialVersion\getSkinCredits(), SpecialStatistics\getUserStats(), UserrightsPage\groupCheckboxes(), listDropDown(), SpecialWhatLinksHere\listEnd(), SpecialPrefixindex\namespacePrefixForm(), ImagePage\openShowImage(), SpecialListGroupRights\outputNamespaceProtectionInfo(), SpecialSearch\powerSearchBox(), ApiFormatXml\recXmlPrint(), SpecialSearch\searchProfileTabs(), SpecialWatchlist\setTopText(), EditPage\showEditForm(), UserrightsPage\showEditUserGroupsForm(), SpecialEditTags\showForm(), FileDeleteForm\showForm(), SpecialImport\showForm(), SpecialRevisionDelete\showForm(), SpecialMergeHistory\showHistory(), SpecialUndelete\showHistory(), SpecialWhatLinksHere\showIndirectLinks(), SpecialMergeHistory\showMergeForm(), SpecialProtectedpages\showOptions(), SpecialSearch\showResults(), SpecialUndelete\showRevision(), SpecialUndelete\showSearchForm(), SpecialVersion\softwareInformation(), XmlTest\testCloseElement(), ImagePage\view(), and SpecialWhatLinksHere\whatlinkshereForm().

static Xml::dateMenu (   $year,
  $month 
)
static
Parameters
int$year
int$month
Returns
string Formatted HTML

Definition at line 167 of file Xml.php.

References $timestamp, MWTimestamp\getInstance(), Html\input(), text, and wfMessage().

Referenced by HistoryAction\onView(), LogEventsList\showOptions(), and XmlTest\testDateMenu().

static Xml::element (   $element,
  $attribs = null,
  $contents = '',
  $allowShortTag = true 
)
static

Format an XML element with given attributes and, optionally, text content.

Element and attribute names are assumed to be ready for literal inclusion. Strings are assumed to not contain XML-illegal characters; special characters (<, >, &) are escaped but illegals are not touched.

Parameters
string$elementElement name
array$attribsName=>value pairs. Values will be escaped.
string$contentsNull to make an open tag only; '' for a contentless closed tag (default)
bool$allowShortTagWhether '' in $contents will result in a contentless closed tag
Returns
string

Definition at line 39 of file Xml.php.

References $attribs, and $out.

Referenced by ImageHistoryList\beginImageHistoryList(), SpecialEditTags\buildCheckBoxes(), ProtectionForm\buildForm(), buildTable(), buildTableRow(), XmlDumpWriter\caseSetting(), Article\confirmDelete(), Preferences\datetimePreferences(), XmlDumpWriter\dbname(), Article\delete(), HistoryPager\diffButtons(), Article\doDelete(), SpecialTags\doTagRow(), SpecialListGroupRights\execute(), SiteExporter\exportSite(), fieldset(), ImageListPager\formatValue(), XmlDumpWriter\generator(), SpecialVersion\getExtensionCredits(), SpecialVersion\getMediaWikiCredits(), Skin\getNewtalks(), SpecialVersion\getSkinCredits(), UserrightsPage\groupCheckboxes(), XmlDumpWriter\homelink(), ImageHistoryList\imageHistoryLine(), ChangesList\insertDateHeader(), SpecialSearch\makeSearchLink(), SpecialPrefixindex\namespacePrefixForm(), XmlDumpWriter\namespaces(), XmlDumpWriter\openPage(), XmlDumpWriter\openStream(), Licenses\outputOption(), DjVuImage\parseFormDjvu(), SpecialSearch\powerSearchBox(), EnhancedChangesList\recentChangesLine(), ApiFormatXml\recXmlPrint(), SpecialSearch\searchProfileTabs(), EditPage\showEditForm(), UserrightsPage\showEditUserGroupsForm(), FileDeleteForm\showForm(), SpecialUndelete\showHistory(), ProtectionForm\showLogExtract(), SpecialPageLanguage\showLogFragment(), MovePageForm\showLogFragment(), UserrightsPage\showLogFragment(), SpecialMergeHistory\showMergeForm(), SpecialProtectedpages\showOptions(), SpecialProtectedtitles\showOptions(), SpecialSearch\showResults(), SpecialUndelete\showRevision(), XmlDumpWriter\sitename(), SpecialVersion\softwareInformation(), XmlTest\testElementAttributes(), XmlTest\testElementEmpty(), XmlTest\testElementEscaping(), XmlTest\testElementOpen(), ThumbnailImage\toHtml(), Preferences\validateSignature(), ImagePage\view(), XmlDumpWriter\writeContributor(), XmlDumpWriter\writeLogItem(), XmlDumpWriter\writeRevision(), XmlDumpWriter\writeTimestamp(), and XmlDumpWriter\writeUpload().

static Xml::elementClean (   $element,
  $attribs = [],
  $contents = '' 
)
static

Format an XML element as with self::element(), but run text through the $wgContLang->normalize() validator first to ensure that no invalid UTF-8 is passed.

Parameters
string$element
array$attribsName=>value pairs. Values will be escaped.
string$contentsNull to make an open tag only; '' for a contentless closed tag (default)
Returns
string

Definition at line 91 of file Xml.php.

References $attribs, $wgContLang, and global.

Referenced by XmlDumpWriter\openPage(), XmlDumpWriter\writeContributor(), XmlDumpWriter\writeLogItem(), XmlDumpWriter\writeRevision(), and XmlDumpWriter\writeUpload().

static Xml::encodeJsCall (   $name,
  $args,
  $pretty = false 
)
static

Create a call to a JavaScript function.

The supplied arguments will be encoded using Xml::encodeJsVar().

Since
1.17
Parameters
string$nameThe name of the function to call, or a JavaScript expression which evaluates to a function object which is called.
array$argsThe arguments to pass to the function.
bool$prettyIf true, add non-significant whitespace to improve readability.
Returns
string|bool String if successful; false upon failure

Definition at line 682 of file Xml.php.

References $args, as, and encodeJsVar().

Referenced by ResourceLoaderClientHtml\getBodyHtml(), OutputPage\getBottomScripts(), ResourceLoaderModule\getDeprecationInformation(), EditPage\getEditToolbar(), ResourceLoaderClientHtml\getHeadHtml(), ResourceLoaderJqueryMsgModule\getScript(), ResourceLoaderUserDefaultsModule\getScript(), ResourceLoaderSpecialCharacterDataModule\getScript(), ResourceLoaderLanguageNamesModule\getScript(), ResourceLoaderUserOptionsModule\getScript(), ResourceLoaderLanguageDataModule\getScript(), ResourceLoaderUserTokensModule\getScript(), ResourceLoaderClientHtml\makeLoad(), JavaScriptContentHandler\makeRedirectContent(), and ResourceLoader\respond().

static Xml::encodeJsVar (   $value,
  $pretty = false 
)
static

Encode a variable of arbitrary type to JavaScript.

If the value is an XmlJsCode object, pass through the object's value verbatim.

Note
Only use this function for generating JavaScript code. If generating output for a proper JSON parser, just call FormatJson::encode() directly.
Parameters
mixed$valueThe value being encoded. Can be any type except a resource.
bool$prettyIf true, add non-significant whitespace to improve readability.
Returns
string|bool String if successful; false upon failure

Definition at line 664 of file Xml.php.

References $value, FormatJson\encode(), and FormatJson\UTF8_OK.

Referenced by encodeJsCall(), WebInstallerComplete\execute(), SpecialJavaScriptTest\exportQUnit(), XmlTest\testEncodeJsVarArray(), XmlTest\testEncodeJsVarBoolean(), XmlTest\testEncodeJsVarFloat(), XmlTest\testEncodeJsVarFloatString(), XmlTest\testEncodeJsVarInt(), XmlTest\testEncodeJsVarIntString(), XmlTest\testEncodeJsVarNull(), XmlTest\testEncodeJsVarObject(), and ResourceLoaderModule\validateScriptFile().

static Xml::escapeJsString (   $string)
static

Returns an escaped string suitable for inclusion in a string literal for JavaScript source code.

Illegal control characters are assumed not to be present.

Deprecated:
since 1.21; use Xml::encodeJsVar() or Xml::encodeJsCall() instead
Parameters
string$stringString to escape
Returns
string

Definition at line 626 of file Xml.php.

Referenced by XmlTest\testEscapeJsStringSpecialChars().

static Xml::escapeTagsOnly (   $in)
static

Replace " > and < with their respective HTML entities ( ", >, <)

Parameters
string$inText that might contain HTML tags.
Returns
string Escaped string

Definition at line 752 of file Xml.php.

Referenced by XmlTest\testEscapeTagsOnly().

static Xml::expandAttributes (   $attribs)
static

Given an array of ('attributename' => 'value'), it generates the code to set the XML attributes : attributename="value".

The values are passed to Sanitizer::encodeAttribute. Return null if no attributes given.

Parameters
array$attribsArray of attributes for an XML element
Exceptions
MWException
Returns
null|string

Definition at line 67 of file Xml.php.

References $attribs, $name, $out, as, and Sanitizer\encodeAttribute().

Referenced by EditPage\getCheckboxes(), XmlTest\testExpandAttributes(), XmlTest\testExpandAttributesException(), and Linker\tooltip().

static Xml::fieldset (   $legend = false,
  $content = false,
  $attribs = [] 
)
static
static Xml::inputLabel (   $label,
  $name,
  $id,
  $size = false,
  $value = false,
  $attribs = [] 
)
static

Convenience function to build an HTML text input field with a label.

Parameters
string$labelText of the label
string$nameValue of the name attribute
string$idId of the input
int | bool$sizeValue of the size attribute
string | bool$valueValue of the value attribute
array$attribsOther attributes
Returns
string HTML

Definition at line 381 of file Xml.php.

References $attribs, $name, $value, and list.

Referenced by LogEventsList\getExtraInputs(), CategoryPager\getStartForm(), LogEventsList\getTitleInput(), LogEventsList\getUserInput(), UserrightsPage\switchForm(), and SpecialWhatLinksHere\whatlinkshereForm().

static Xml::inputLabelSep (   $label,
  $name,
  $id,
  $size = false,
  $value = false,
  $attribs = [] 
)
static

Same as Xml::inputLabel() but return input and label in an array.

Parameters
string$label
string$name
string$id
int | bool$size
string | bool$value
array$attribs
Returns
array

Definition at line 400 of file Xml.php.

References $attribs, $name, $value, and label().

Referenced by SpecialRecentChanges\categoryFilterForm().

static Xml::isWellFormed (   $text)
staticprivate

Check if a string is well-formed XML.

Must include the surrounding tag. This function is a DoS vector if an attacker can define entities in $text.

Parameters
string$textString to test.
Returns
bool
Todo:
Error position reporting return

Definition at line 707 of file Xml.php.

References $parser.

Referenced by isWellFormedXmlFragment().

static Xml::isWellFormedXmlFragment (   $text)
static

Check if a string is a well-formed XML fragment.

Wraps fragment in an \<html\> bit and doctype, so it can be a fragment and can use HTML named entities.

Parameters
string$text
Returns
bool

Definition at line 735 of file Xml.php.

References $html, Sanitizer\hackDocType(), and isWellFormed().

Referenced by Parser\validateSig().

static Xml::label (   $label,
  $id,
  $attribs = [] 
)
static
static Xml::languageSelector (   $selected,
  $customisedOnly = true,
  $inLanguage = null,
  $overrideAttrs = [],
Message  $msg = null 
)
static

Construct a language selector appropriate for use in a form or preferences.

Parameters
string$selectedThe language code of the selected language
bool$customisedOnlyIf true only languages which have some content are listed
string$inLanguageThe ISO code of the language to display the select list in (optional)
array$overrideAttrsOverride the attributes of the select tag (since 1.20)
Message | null$msgLabel message key (since 1.20)
Returns
array Array containing 2 items: label HTML and select list HTML

Definition at line 204 of file Xml.php.

References $code, $languages, $name, $options, $wgLanguageCode, as, Language\fetchLanguageNames(), global, label(), option(), tags(), and wfMessage().

Referenced by AllMessagesTablePager\buildForm(), and XmlTest\testLanguageSelector().

static Xml::listDropDown (   $name = '',
  $list = '',
  $other = '',
  $selected = '',
  $class = '',
  $tabindex = null 
)
static

Build a drop-down box from a textual list.

Parameters
string$nameName and id for the drop-down
string$listCorrectly formatted text (newline delimited) to be used to generate the options.
string$otherText for the "Other reasons" option
string$selectedOption which should be pre-selected
string$classCSS classes for the drop-down
int$tabindexValue of the tabindex attribute
Returns
string

Definition at line 508 of file Xml.php.

References $attribs, $name, $options, $tabindex, $value, as, closeElement(), and openElement().

Referenced by ProtectionForm\buildForm(), Article\confirmDelete(), FileDeleteForm\showForm(), and SpecialRevisionDelete\showForm().

static Xml::monthSelector (   $selected = '',
  $allmonths = null,
  $id = 'month' 
)
static

Create a date selector.

Parameters
string$selectedThe month which should be selected, default ''.
string$allmonthsValue of a special item denoting all month. Null to not include (default).
string$idElement identifier
Returns
string Html string containing the month selector

Definition at line 144 of file Xml.php.

References $options, $wgLang, global, and wfMessage().

static Xml::openElement (   $element,
  $attribs = null 
)
static

This opens an XML element.

Parameters
string$elementName of the element
array$attribsArray of attributes, see Xml::expandAttributes()
Returns
string

Definition at line 109 of file Xml.php.

References $attribs.

Referenced by ImageHistoryList\beginImageHistoryList(), AllMessagesTablePager\buildForm(), ProtectionForm\buildForm(), buildForm(), buildTable(), buildTableRow(), EditPage\displayPreviewArea(), SpecialRecentChanges\doHeader(), SpecialStatistics\execute(), SpecialListGroupRights\execute(), QueryPage\execute(), SiteExporter\exportSite(), SiteExporter\exportSites(), fieldset(), AllMessagesTablePager\formatRow(), SpecialStatistics\formatRowHeader(), SpecialStatistics\getEditStats(), SpecialVersion\getExtensionCredits(), UsersPager\getPageHeader(), SpecialStatistics\getPageStats(), MysqlInstaller\getSettingsForm(), SpecialVersion\getSkinCredits(), AllMessagesTablePager\getStartBody(), SpecialStatistics\getUserStats(), UserrightsPage\groupCheckboxes(), listDropDown(), SpecialWhatLinksHere\listItem(), SpecialWhatLinksHere\listStart(), SpecialPrefixindex\namespacePrefixForm(), ImagePage\openShowImage(), SpecialListGroupRights\outputNamespaceProtectionInfo(), SpecialSearch\powerSearchBox(), SpecialSearch\searchProfileTabs(), SpecialWatchlist\setTopText(), EditPage\showEditForm(), UserrightsPage\showEditUserGroupsForm(), SpecialUndelete\showFileConfirmationForm(), SpecialEditTags\showForm(), FileDeleteForm\showForm(), SpecialImport\showForm(), SpecialRevisionDelete\showForm(), SpecialMergeHistory\showHistory(), SpecialUndelete\showHistory(), LogEventsList\showLogExtract(), SpecialMergeHistory\showMergeForm(), Article\showMissingArticle(), SpecialProtectedpages\showOptions(), SpecialSearch\showResults(), SpecialUndelete\showRevision(), SpecialUndelete\showSearchForm(), SpecialVersion\softwareInformation(), XmlTest\testOpenElement(), TraditionalImageGallery\toHTML(), SpecialRevisionDelete\tryShowFile(), ImagePage\view(), and SpecialWhatLinksHere\whatlinkshereForm().

static Xml::option (   $text,
  $value = null,
  $selected = false,
  $attribs = [] 
)
static

Convenience function to build an HTML drop-down list item.

Parameters
string$textText for this item. Will be HTML escaped
string$valueForm submission value; if empty, use text
bool$selectedIf true, will be the default selected item
array$attribsOptional additional HTML attributes
Returns
string HTML

Definition at line 485 of file Xml.php.

References $attribs, $value, and Html\element().

Referenced by ImagePage\doRenderLangOpt(), XmlSelect\formatOptions(), SpecialProtectedtitles\getLevelMenu(), SpecialProtectedpages\getLevelMenu(), SpecialProtectedpages\getTypeMenu(), languageSelector(), ImagePage\openShowImage(), and SpecialImport\showForm().

static Xml::password (   $name,
  $size = false,
  $value = false,
  $attribs = [] 
)
static

Convenience function to build an HTML password input field.

Parameters
string$nameValue of the name attribute
int$sizeValue of the size attribute
mixed$valueValue of the value attribute
array$attribsOther attributes
Returns
string HTML

Definition at line 298 of file Xml.php.

References $attribs, $name, and $value.

static Xml::radio (   $name,
  $value,
  $checked = false,
  $attribs = [] 
)
static

Convenience function to build an HTML radio button.

Parameters
string$nameValue of the name attribute
string$valueValue of the value attribute
bool$checkedWhether the checkbox is checked or not
array$attribsOther attributes
Returns
string HTML

Definition at line 342 of file Xml.php.

References $attribs, $name, and $value.

Referenced by SpecialRevisionDelete\buildCheckBoxes(), HTMLRadioField\formatOptions(), SpecialMergeHistory\formatRevisionRow(), and WebInstaller\getRadioElements().

static Xml::radioLabel (   $label,
  $name,
  $value,
  $id,
  $checked = false,
  $attribs = [] 
)
static

Convenience function to build an HTML radio button with a label.

Parameters
string$label
string$name
string$value
string$id
bool$checked
array$attribs
Returns
string HTML

Definition at line 445 of file Xml.php.

References $attribs, $name, and $value.

Referenced by AllMessagesTablePager\buildForm(), WebInstallerDBConnect\execute(), SpecialImport\getMappingFormPart(), and SpecialProtectedpages\getSizeLimit().

static Xml::span (   $text,
  $class,
  $attribs = [] 
)
static

Shortcut to make a span element.

Parameters
string$textContent of the element, will be escaped
string$classClass name of the span element
array$attribsOther attributes
Returns
string

Definition at line 251 of file Xml.php.

References $attribs.

static Xml::tags (   $element,
  $attribs = null,
  $contents 
)
static

Same as Xml::element(), but does not escape contents.

Handy when the content you have is already valid xml.

Parameters
string$elementElement name
array$attribsArray of attributes
string$contentsContent of the element
Returns
string

Definition at line 131 of file Xml.php.

References $attribs.

Referenced by SpecialRevisionDelete\buildCheckBoxes(), buildForm(), ImportReporter\close(), SpecialRecentChanges\doHeader(), SpecialTags\doTagRow(), SpecialUndelete\formatRevisionRow(), AllMessagesTablePager\formatRow(), SpecialStatistics\formatRowHeader(), ChangeTags\formatSummaryRow(), PreferencesForm\getButtons(), SpecialStatistics\getEditStats(), ChangeTagsRevisionItem\getHTML(), ChangeTagsLogItem\getHTML(), RevDelRevisionItem\getHTML(), SpecialProtectedtitles\getLevelMenu(), SpecialProtectedpages\getLevelMenu(), SpecialStatistics\getPageStats(), WebInstaller\getRadioElements(), HistoryPager\getStartBody(), CategoryPager\getStartForm(), EditPage\getSummaryInput(), EditPage\getSummaryPreview(), SpecialProtectedpages\getTypeMenu(), SpecialStatistics\getUserStats(), UserrightsPage\groupCheckboxes(), HistoryPager\historyLine(), WebInstaller\label(), languageSelector(), MediaTransformOutput\linkWrap(), SpecialWhatLinksHere\listItem(), ImagePage\openShowImage(), DjVuImage\parseFormDjvu(), SpecialSearch\powerSearchBox(), Linker\revDeleteLink(), Linker\revDeleteLinkDisabled(), SpecialSearch\searchProfileTabs(), SpecialSearch\shortDialog(), SpecialRevisionDelete\showForm(), LogEventsList\showOptions(), SpecialTags\showTagList(), PreferencesForm\wrapForm(), and TableDiffFormatter\wrapLine().

static Xml::textarea (   $name,
  $content,
  $cols = 40,
  $rows = 5,
  $attribs = [] 
)
static

Shortcut for creating textareas.

Parameters
string$nameThe 'name' for the textarea
string$contentContent for the textarea
int$colsThe number of columns for the textarea
int$rowsThe number of rows for the textarea
array$attribsAny other attributes for the textarea
Returns
string

Definition at line 604 of file Xml.php.

References $attribs, $content, $name, and Html\getTextInputAttributes().

Referenced by WebInstaller\getTextArea(), SpecialExpandTemplates\makeOutput(), XmlTest\testTextareaAttribs(), and XmlTest\testTextareaNoContent().

static Xml::wrapClass (   $text,
  $class,
  $tag = 'span',
  $attribs = [] 
)
static

Shortcut to make a specific element with a class attribute.

Parameters
string$textContent of the element, will be escaped
string$classClass name of the span element
string$tagElement name
array$attribsOther attributes
Returns
string

Definition at line 263 of file Xml.php.

References $attribs, and $tag.

Referenced by SpecialWhatLinksHere\listItem().


The documentation for this class was generated from the following file: