19 declare(strict_types=1);
41 public static function escapeText(
string $a_text): string
43 $a_text = str_replace(
"\r\n",
'\\n', $a_text);
60 public function addLine(
string $a_line): void
71 for ($i = 0; $i < count($chunks); $i++) {
72 $line = ($i > 0) ? self::BEGIN_LINE_WHITESPACE : self::EMPTY;
74 $line .= (isset($chunks[$i + 1]) || ($i + 1) === count($chunks)) ? self::LINEBREAK : self::EMPTY;
75 $this->lines[] = $line;
91 $this->lines = array_merge($this->lines, $other->lines);
96 return implode(
'', $this->lines);
static escapeText(string $a_text)
const BEGIN_LINE_WHITESPACE
static subStr(string $a_str, int $a_start, ?int $a_length=null)
static strLen(string $a_string)
append(ilICalWriter $other)