ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Unknown.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Sabre\VObject\Property;
4 
15 class Unknown extends Text {
16 
24  function getJsonValue() {
25 
26  return [$this->getRawMimeDirValue()];
27 
28  }
29 
38  function getValueType() {
39 
40  return 'UNKNOWN';
41 
42  }
43 
44 }
getJsonValue()
Returns the value, in the format it should be encoded for json.
Definition: Unknown.php:24
getRawMimeDirValue()
Returns a raw mime-dir representation of the value.
Definition: Text.php:134
getValueType()
Returns the type of value.
Definition: Unknown.php:38
Text property.
Definition: Text.php:20
Unknown property.
Definition: Unknown.php:15