wiki.techinc.nl/includes/htmlform/HTMLSelectNamespace.php
Florianschmidtwelzow 317345b0df SpecialNewpages: Prepare for mw-ui
Use HTMLForm instead of self-built table structure, to be
prepared for use with MediaWiki UI.

Bug: 71446
Change-Id: I5c03dc543b910aab27a26a5a223341be50893cf3
2014-10-15 23:25:11 +02:00

18 lines
362 B
PHP

<?php
/**
* Wrapper for Html::namespaceSelector to use in HTMLForm
*/
class HTMLSelectNamespace extends HTMLFormField {
function getInputHTML( $value ) {
return Html::namespaceSelector(
array(
'selected' => $value,
'all' => 'all'
), array(
'name' => $this->mName,
'id' => $this->mID,
'class' => 'namespaceselector',
)
);
}
}