X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;ds=sidebyside;f=includes%2Fhtmlform%2FHTMLTextField.php;h=88df49dbf5d566e1d1e2d19dfe7d08bf49420340;hb=dd53b928b933ece1478c04b41c1ef3067ecbebae;hp=10bc67f0becfeb9cbb8dba5e7707559aa642c0d6;hpb=914e7e2b5d34104bd9ae800f632c68ddc6eecef1;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/htmlform/HTMLTextField.php b/includes/htmlform/HTMLTextField.php index 10bc67f0be..88df49dbf5 100644 --- a/includes/htmlform/HTMLTextField.php +++ b/includes/htmlform/HTMLTextField.php @@ -20,6 +20,7 @@ class HTMLTextField extends HTMLFormField { # @todo Enforce pattern, step, required, readonly on the server side as # well $allowedParams = array( + 'type', 'min', 'max', 'pattern', @@ -38,10 +39,13 @@ class HTMLTextField extends HTMLFormField { $attribs += $this->getAttributes( $allowedParams ); + # Extract 'type' + $type = isset( $attribs['type'] ) ? $attribs['type'] : 'text'; + unset( $attribs['type'] ); + # Implement tiny differences between some field variants # here, rather than creating a new class for each one which # is essentially just a clone of this one. - $type = 'text'; if ( isset( $this->mParams['type'] ) ) { switch ( $this->mParams['type'] ) { case 'int': @@ -60,6 +64,7 @@ class HTMLTextField extends HTMLFormField { break; } } + return Html::input( $this->mName, $value, $type, $attribs ); } }