Merge "Using ULS in Special:PageLanguage"
[mediawiki.git] / includes / htmlform / HTMLTextAreaField.php
blob21173d2a630f8313cc2607146b58ca9b6b5ac143
1 <?php
3 class HTMLTextAreaField extends HTMLFormField {
4 const DEFAULT_COLS = 80;
5 const DEFAULT_ROWS = 25;
7 function getCols() {
8 return isset( $this->mParams['cols'] ) ? $this->mParams['cols'] : static::DEFAULT_COLS;
11 function getRows() {
12 return isset( $this->mParams['rows'] ) ? $this->mParams['rows'] : static::DEFAULT_ROWS;
15 function getInputHTML( $value ) {
16 $attribs = array(
17 'id' => $this->mID,
18 'cols' => $this->getCols(),
19 'rows' => $this->getRows(),
20 ) + $this->getTooltipAndAccessKey();
22 if ( $this->mClass !== '' ) {
23 $attribs['class'] = $this->mClass;
26 $allowedParams = array(
27 'placeholder',
28 'tabindex',
29 'disabled',
30 'readonly',
31 'required',
32 'autofocus'
35 $attribs += $this->getAttributes( $allowedParams );
36 return Html::textarea( $this->mName, $value, $attribs );