wiki.techinc.nl/includes/htmlform/HTMLTextField.php
Alexandre Emsenhuber cb9a9a7b47 Add support for "tabindex" in HTMLFormField subclasses
It is already set for some fields in Special:Block, but are
discarded by HTMLForm and its fields.

Some notes:
- fields with multiple inputs (radio, select and other, select
  or other) will have the same tabindex set on all elements
- Some items such as multi-select and check matrix are not yet
  implemented

Change-Id: I3e1ba7f16f3a3183f231afcf60dd392ce6d6eb6b
2014-01-25 04:31:01 +00:00

66 lines
1.4 KiB
PHP

<?php
class HTMLTextField extends HTMLFormField {
function getSize() {
return isset( $this->mParams['size'] ) ? $this->mParams['size'] : 45;
}
function getInputHTML( $value ) {
$attribs = array(
'id' => $this->mID,
'name' => $this->mName,
'size' => $this->getSize(),
'value' => $value,
) + $this->getTooltipAndAccessKey();
if ( $this->mClass !== '' ) {
$attribs['class'] = $this->mClass;
}
# @todo Enforce pattern, step, required, readonly on the server side as
# well
$allowedParams = array(
'min',
'max',
'pattern',
'title',
'step',
'placeholder',
'list',
'maxlength',
'tabindex',
'disabled',
'required',
'autofocus',
'multiple',
'readonly'
);
$attribs += $this->getAttributes( $allowedParams );
# 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.
if ( isset( $this->mParams['type'] ) ) {
switch ( $this->mParams['type'] ) {
case 'email':
$attribs['type'] = 'email';
break;
case 'int':
$attribs['type'] = 'number';
break;
case 'float':
$attribs['type'] = 'number';
$attribs['step'] = 'any';
break;
# Pass through
case 'password':
case 'file':
$attribs['type'] = $this->mParams['type'];
break;
}
}
return Html::element( 'input', $attribs );
}
}