3 declare(strict_types=1);
37 public function __construct(
string $a_name,
string $a_value =
'')
39 $this->name = $a_name;
40 $this->value = $a_value;
43 public function setValue(
string $a_value): void
45 $this->value = $a_value;
50 return trim($this->value);
63 public function getItemsByName(
string $a_name,
bool $a_recursive =
true): array
70 $this->items[] = $a_item;
setValue(string $a_value)
addItem(ilICalItem $a_item)
getItemsByName(string $a_name, bool $a_recursive=true)
__construct(string $a_name, string $a_value='')
Abstract base class for all ical items (Component, Parameter and Value)