예제 #1
0
 /**
  * Write this object
  *
  * @param  text.ical.Output $out
  * @param  string $name
  * @return void
  */
 public function write($out, $name)
 {
     $out->pair($name, ['language' => $this->language], $this->value);
 }
예제 #2
0
 /**
  * Write this object
  *
  * @param  text.ical.Output $out
  * @param  string $name
  * @return void
  */
 public function write($out, $name)
 {
     $out->pair($name, ['tzid' => $this->tzid], $this->value);
 }
예제 #3
0
 /**
  * Write this object
  *
  * @param  text.ical.Output $out
  * @param  string $name
  * @return void
  */
 public function write($out, $name)
 {
     $out->pair($name, ['related' => $this->related], $this->value);
 }
예제 #4
0
 /**
  * Write this object
  *
  * @param  text.ical.Output $out
  * @param  string $name
  * @return void
  */
 public function write($out, $name)
 {
     $out->pair('attendee', ['role' => $this->role, 'partstat' => $this->partstat, 'rsvp' => $this->rsvp, 'type' => $this->type, 'cn' => $this->cn], $this->value);
 }
예제 #5
0
 /**
  * Write this object
  *
  * @param  text.ical.Output $out
  * @param  string $name
  * @return void
  */
 public function write($out, $name)
 {
     $out->pair('organizer', ['cn' => $this->cn], $this->value);
 }