Add CollationFa
[lhc/web/wiklou.git] / includes / htmlform / HTMLTextFieldWithButton.php
1 <?php
2 /**
3 * Creates a text input field with a button assigned to the input field.
4 */
5 class HTMLTextFieldWithButton extends HTMLTextField {
6 /** @var HTMLFormFieldWithButton $mClassWithButton */
7 protected $mClassWithButton = null;
8
9 public function __construct( $info ) {
10 $this->mClassWithButton = new HTMLFormFieldWithButton( $info );
11 parent::__construct( $info );
12 }
13
14 public function getInputHTML( $value ) {
15 return $this->mClassWithButton->getElement( parent::getInputHTML( $value ) );
16 }
17 }