Beispiel #1
0
 /**
  * Return the value of the Property as an escaped string.
  *
  * Escape values as per RFC 2445. See http://www.kanzaki.com/docs/ical/text.html
  *
  * @return string
  */
 public function getEscapedValue()
 {
     return PropertyValueUtil::escapeValue((string) $this->value);
 }
Beispiel #2
0
 public function getEscapedValue()
 {
     return implode(',', array_map(function ($value) {
         return PropertyValueUtil::escapeValue((string) $value);
     }, $this->values));
 }