Source for file TextArea.php
Documentation is available at TextArea.php
- 1: <?php
- 3: /**
- 4: * Nette Framework
- 5: *
- 11: */
- 15: /**
- 16: * Multiline text input control.
- 17: *
- 20: */
- 22: {
- 24: /**
- 29: */
- 31: {
- 37: }
- 41: /**
- 42: * Generates control's HTML element.
- 44: */
- 46: {
- 48: $control->setText($this->getValue() === '' ? $this->translate($this->emptyValue) : $this->value);
- 50: }
- 52: }