3 * Creates a Html::namespaceSelector input field with a button assigned to the input field.
5 class HTMLSelectNamespaceWithButton
extends HTMLSelectNamespace
{
6 /** @var HTMLFormClassWithButton $mClassWithButton */
7 protected $mClassWithButton = null;
9 public function __construct( $info ) {
10 $this->mClassWithButton
= new HTMLFormFieldWithButton( $info );
11 parent
::__construct( $info );
14 public function getInputHTML( $value ) {
15 return $this->mClassWithButton
->getElement( parent
::getInputHTML( $value ) );