Use HTMLForm instead of self-built table structure, to be prepared for use with MediaWiki UI. Bug: 71446 Change-Id: I5c03dc543b910aab27a26a5a223341be50893cf3
18 lines
362 B
PHP
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',
|
|
)
|
|
);
|
|
}
|
|
}
|