ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
FlatText.php
Go to the documentation of this file.
1<?php
2
4
25class FlatText extends Text {
26
32 public $delimiter = ',';
33
43 function setQuotedPrintableValue($val) {
44
45 $val = quoted_printable_decode($val);
46 $this->setValue($val);
47
48 }
49
50}
An exception for terminatinating execution or to throw for unit testing.
setQuotedPrintableValue($val)
Sets the value as a quoted-printable encoded string.
Definition: FlatText.php:43
Text property.
Definition: Text.php:20
setValue($value)
Updates the current value.
Definition: Property.php:98