3declare(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;
 
Abstract base class for all ical items (Component, Parameter and Value)
 
getItemsByName(string $a_name, bool $a_recursive=true)
 
addItem(ilICalItem $a_item)
 
setValue(string $a_value)
 
__construct(string $a_name, string $a_value='')