Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.

Differences Between: [Versions 311 and 401] [Versions 311 and 402] [Versions 311 and 403]

(no description)

File Size: 231 lines (6 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 2 classes

HTML_QuickForm_textarea:: (2 methods):
  __construct()
  HTML_QuickForm_textarea()

name:: (9 methods):
  setName()
  getName()
  setValue()
  getValue()
  setWrap()
  setRows()
  setCols()
  toHtml()
  getFrozenHtml()


Class: HTML_QuickForm_textarea  - X-Ref

HTML class for a textarea type field

__construct($elementName=null, $elementLabel=null, $attributes=null)   X-Ref
Class constructor

param: string    Input field name attribute
param: mixed     Label(s) for a field
param: mixed     Either a typical HTML attribute string or an associative array
return: void

HTML_QuickForm_textarea($elementName=null, $elementLabel=null, $attributes=null)   X-Ref
Old syntax of class constructor. Deprecated in PHP7.


Class: name  - X-Ref

setName($name)   X-Ref
Sets the input field name

param: string    $name   Input field name attribute
return: void

getName()   X-Ref
Returns the element name

return: string

setValue($value)   X-Ref
Sets value for textarea element

param: string    $value  Value for textarea element
return: void

getValue()   X-Ref
Returns the value of the form element

return: string

setWrap($wrap)   X-Ref
Sets wrap type for textarea element

param: string    $wrap  Wrap type
return: void

setRows($rows)   X-Ref
Sets height in rows for textarea element

param: string    $rows  Height expressed in rows
return: void

setCols($cols)   X-Ref
Sets width in cols for textarea element

param: string    $cols  Width expressed in cols
return: void

toHtml()   X-Ref
Returns the textarea element in HTML

return: string

getFrozenHtml()   X-Ref
Returns the value of field without HTML tags (in this case, value is changed to a mask)

return: string