ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
FlatText.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Sabre\VObject\Property;
4 
25 class 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 }
setValue($value)
Updates the current value.
Definition: Property.php:98
setQuotedPrintableValue($val)
Sets the value as a quoted-printable encoded string.
Definition: FlatText.php:43
Text property.
Definition: Text.php:20
FlatText property.
Definition: FlatText.php:25